1.3.4 web technologies Flashcards
contains questions getting wrong from smart revise (ADD EXAM QUESTIONS TOO)
What can be described as, ‘SQL operations that are performed remotely’?
- Server-side processing
what is server-side processing
- refers to operations performed by server in a client-server relationship in computer network.
- Typically, a server is a computer program, such as a web server, that runs on a remote server, reachable from a user’s local computer.
What is meant by term JavaScript?
- programming language that adds interactivity to a webpage + works alongside / can be embedded into HTML with
tag. Also works with CSS. It runs in a web browser
Explain why its usually the case that JavaScript is interpreted rather than compiled.
- Java is likely to be run on a variety of machines with different processors / architectures.
- Compiled code is machine dependent whereas interpreters run on high level code which is machine independent.
Web sites are hosted on what?
web servers
Scripts can be executed either on the what 2 sides using what processing? (server-side processing). This includes SQL, Python, C, or in the browser (client-side processing) using HTML, CSS and JavaScript. Code executing on the client computer will be quicker than sending data to a server for processing.
- either on host or server
- client side and server side
what 3 main coding languages use client-side processing?
- HTML
-CSS
-JavaScript
- which form of processing is faster to execute code, client side or server side processing?
Code executing on the client computer will be quicker than sending data to a server for processing.