PRE-MIDTERM Flashcards
Where is the query string included when submitting a form using the HTTP GET method?
In the HTTP head.
What happens when accessing www.google.com? (2)
Multiple GET requests are sent to the server and some JS code is possibly downloaded from the server.
What’s a MIME type?
The Multipurpose Internet Mail Extension is a standard that indicates the format of a file.
List 3 possibly correct MIME type definitions.
text / plain
text / css
text / javascript
Who invented HTML?
Tim Berners-Lee
What is the range of HTTP informational response status codes?
100-199
What is the range of HTTP successful response status codes?
200-299
What is the range of HTTP redirection message status codes?
300-399
What is the range of HTTP client-error response status codes?
400-499
What is the range of HTTP server-error response status codes?
500-599
Which is stricter & more standardized? HTML or XHTML?
XHTML
Is HTML case sensitive?
No
Is XHTML case sensitve?
Yes
What is the scope of a variable declared with var?
The scope is the current execution context and closures thereof (local from within a function or global from outside any function).
What is the scope of a variable declared with let?
The scope is the block statement/expression on which it is used.