programming languages Online Quiz - 105
Description: programming languages Online Quiz - 105 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
7) In which year did the LOTUS launch its “123” Software Package?
9) In 1956 Hard Disk Drives(HDD) were invented by which of the Following?
In 1956 Hard Disk Drives(HDD) were invented by which of the Following?
Which is the First Ever Computer Game Invented?
Which of the Folowing is the World’s first available Dyanmic RAM chip?
What is the name of the First Programmable Computer?
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 which year did the LOTUS launch its “123” Software Package?
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; }
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; };
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; }