programming languages Online Quiz - 105
Description: programming languages Online Quiz - 105 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
9) In 1956 Hard Disk Drives(HDD) were invented by which of the Following?
10) The Difference Engine was invented by ?
The Difference Engine was invented by ?
Which is the first successful high level programming language?
What is the name of the first computer used by the US Government?
Which among the following was involved in the development of ALGOL and Shortest Path Algorithm?
In Second Generation of Computers which Of the following replaced Vacum Tubes?
const int x = 5; int main(int argc, char** argv) { int x[x]; int y = sizeof(x) / sizeof(int); return 0; }
int x = 5; class x { }; int main(int argc, char** argv) { class x y; return 0; }
#include const int SIZE = 5; struct tester { int array[SIZE]; enum { SIZE = 3 }; void size() { std::cout << sizeof(array) / sizeof(int); } }; int main(int argc, char** argv) { tester t; t.size(); return 0; }
What is the value of the local variable x at the end of main? int x = 5; int main(int argc, char** argv) { int x = x; return 0; }