In: Computer Science
1. An HTML document that’s generated by a web application is a ________________________ web page.
2. An easy way to log the progress of an application in Chrome’s Console panel is to insert __________________ methods at critical points in the code.
3. The childNodes property of a DOM object returns a/an ______________________ of the child nodes for that object.
4. The ___________________ method of an array can be used to concatenate the elements of the array into a single string.
5. The statements in a for-in loop are processed once for each __________________ value of an array.
1)An HTML document that’s generated by a web application is a
________________________ web page
Ans: Dynamic web page.
Explanation: Dynamic web page is a type of web page which entire
construction of that web page is controlled and generated by an
application processing scripts.
2) An easy way to log the progress of an application in Chrome’s
Console panel is to insert __________________ methods at critical
points in the code.
Ans: Properties
3)The childNodes property of a DOM object returns a/an
______________________ of the child nodes for that object.
Ans: Live collection of cild nodes.
4)4. The ___________________ method of an array can be used to
concatenate the elements of the array into a single string.
Ans: join() method
join() method is mainly used for the purposse of joining all elements of an array into a string.
5) The statements in a for-in loop are processed once for each
__________________ value of an array.
Ans: index value