programming languages Online Quiz - 9
Description: programming languages Online Quiz - 9 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
Which is true about an anonymous inner class?
Which is true about a method-local inner class?
Which is a non-keyed access path
What is the output of the below JavaScript?
alert(Math.sqrt(-16));
What is the output of the below JavaScript?
with(Math){
alert(pow(2,3));
}
What is the output of the below JavaScript?
var currDate = new Date("30 September, 2011");
alert(currDate.getMonth());