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.
What happens to Boolean values in arithmetic operations?
true converts to 1 and false to 0.
Do nested elements belong to their parent’s class(es)?
No.
What form attribute defines the destination of a submitted form?
action
Can input of type “number” be resized without CSS (using the size attribute)?
No.
How are radio buttons linked?
Through a common “name” attribute value.
What is the order in which to list font properties when using the shorthand CSS “font” property?
style variant weight size family.
How would you italicize text in CSS?
font-style: italic;
How would you change the font of a text in CSS?
font-family: Arial;
How would you bold text in CSS?
font-weight: bold;