InterviewSolution
Saved Bookmarks
| 1. |
What is the default value of the asyc attribute?(a) 0(b) 1(c) False(d) True |
|
Answer» Correct answer is (d) True The explanation: The async attribute is a boolean attribute. When present, it specifies that the script will be executed asynchronously as soon as it is available. The async attribute optionally accepts a boolean value and by default holds the value true. |
|