1. How would you access the grid property of the parameters object? parameters.grid parameters/grid parameters(grid) 2. What will be displayed in the devtool console after the following is executed? var a = 200; var b = a--; console.log("b = " + b + " a = " + a); b = 199 a = 199 b = 200 a = 200 b = 200 a = 199 3. Some users have specific presentation needs based on personal or technological limitations or preferences. Separating content from presentation allows these users the option to control how they view content. True False
1. How would you access the grid property of the parameters object?
parameters.grid |
||
parameters/grid |
||
parameters(grid) |
2. What will be displayed in the devtool console after the following is executed?
var a = 200; var b = a--;
console.log("b = " + b + " a = " + a);
b = 199 a = 199 |
||
b = 200 a = 200 |
||
b = 200 a = 199 |
3. Some users have specific presentation needs based on personal or technological limitations or preferences. Separating content from presentation allows these users the option to control how they view content.
True
False
4. With CSS, you can specifically cater the style to each device to ensure an optimal experience.
True
False
5. Some users have specific presentation needs based on personal or technological limitations or preferences. Separating content from presentation allows these users the option to control how they view content.
True
False
6. With CSS, you can specifically cater the style to each device to ensure an optimal experience.
True
False
7. CSS is responsible for the ____________________ of the Web page.
correctness |
||
structure |
||
properties |
||
security |
8. Are variable names case sensitive?
True
False
9. The code below adds a click event listener to the whole document (any click on the page will trigger the event)
addEventListener('click', function(evt) {
document.body.innerHTML += 'Clicked!';
});
True
False
10. Link Layer is Responsible for physical transmission of data across media (both wired and wireless) and Establishing logical links.
True
False
Trending now
This is a popular solution!
Step by step
Solved in 2 steps