Which of the following are capabilities of functions in JavaScript?
Accept parameters are capabilities of functions in JavaScript.
View Answer Report Error Discuss
Which of the following statements about inheritance is false?
Exception handling is targeted at
How many constructors can a class have?
A class can have any number of constructors. If a class have more than one constructor, we call it as the constructor is overloaded.
How to call a constructor in java?
Constructor chaining is the process of calling one constructor from another constructor with respect to current object.
Within same class: It can be done using this() keyword for constructors in same class
From base class: by using super() keyword to call constructor from the base class.
View answer Workspace Report Error Discuss
Which of the following is not a keyword?
"eval" is not a keyword and is can be used as variable.
Is it possible to nest functions in javascript?
Yes, it is possible to nest functions in javascript.
Which of the following attribute can hold the JavaScript version?
Language attribute contains the javascript versions.