InterviewSolution
Saved Bookmarks
| 1. |
When does the browser stop rendering the HTML?(a) Inline JavaScript block(b) External JavaScript file(c) Both Inline JavaScript block & External JavaScript file(d) External HTML file |
|
Answer» Right choice is (c) Both Inline JavaScript block & External JavaScript file Easy explanation: When the browser parses the HTML markup, it stops rendering the HTML when it encounters an inline JavaScript block or external JavaScript file. At this point, the user experiences rendering delays. |
|