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 a method-local inner class?
Which is not a file to field relation
Which is a non-keyed access path
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());
What is the output of the below JavaScript?
var book = "Head First JavaScript";
alert(book.length);
a = 10;
var b = 20;
var c = a + b;
alert(c);