programming languages Online Quiz - 344
Description: programming languages Online Quiz - 344 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
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.
In which event are the controls fully loaded?
What is event bubbling?
Where is View State information stored?
How do we assign page specific attributes?
What is the value of variable z when the following program segment ends? int z; for(z=0; z<50; z++) {}
Which of the following operators cannot be overloaded?
The vtable entry for a pure virtual function in C++ is
For the class exforsys defined as below: class exforsys() { }; int main() { exforsys a; } Which of the following is TRUE?
The friend function of a class in C++ can access
Which programming language was invented by Dennis Ritchie in 1972?
Which programming language resembles its name to coffee?
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); }
void main() { int i; char *item; for(i=0;i<512;i++,item++) printf("%c",item); }