programming languages Online Quiz - 344
Description: programming languages Online Quiz - 344 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
In which event are the controls fully loaded?
What is event bubbling?
How do we ensure view state is not tampered?
Where is View State information stored?
What is the use of "GLOBAL.ASAX" file?
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?
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 was the first object oriented programming language?
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); }