programming languages Online Quiz - 344
Description: programming languages Online Quiz - 344 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
1.Set s = new TreeSet(); 2.s.add("JAVA"); 3.s.add(new Integer(5)); Line 3 will give ClassCast Exception because Two different types of object are getting added.
How do we ensure view state is not tampered?
What is the use of "GLOBAL.ASAX" file?
The vtable entry for a pure virtual function in C++ is
Which was the first object oriented programming language?
JAVA promised which one of these?
Which programming language was invented by Dennis Ritchie in 1972?
C++ programming language was invented by _______.
int ThatsMyFunction() { return 5; } void main() { printf("%u",ThatsMyFunction); }