What is the name of the first computer used by the US Government?
APPLE
IBM
UNIVAC
ENIAC
Which among the following was involved in the development of ALGOL and Shortest Path Algorithm?
Charles Babbage
Edsger Wybe Dijkstra
Robert Noyce
Gordon Moore
In which year did the LOTUS launch its “123” Software Package?
1983
1979
1982
1977
In Second Generation of Computers which Of the following replaced Vacum Tubes?
Transistors
Registers
Capacitors
Chips
const int x = 5; int main(int argc, char** argv) { int x[x]; int y = sizeof(x) / sizeof(int); return 0; }
0
5
20
undefined
int x = 5; class x { }; int main(int argc, char** argv) { class x y; return 0; }
True
False
#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; }
3
int main() { int& x[50]; return 0; }
What is the maximum number of implicitly defined constructors that this struct will have? struct A { A(A& a) { } A(double d) {} int val; };
1
2
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; }