0

programming languages Online Quiz - 105

Description: programming languages Online Quiz - 105
Number of Questions: 20
Created by:
Tags: programming languages
Attempted 0/20 Correct 0 Score 0

9) In 1956 Hard Disk Drives(HDD) were invented by which of the Following?

  1. APPLE

  2. Microsoft

  3. Western Digital

  4. IBM


Correct Option: D

10) The Difference Engine was invented by ?

  1. Charles Babbage

  2. J.H. Muller

  3. Bill Gates

  4. Blaise Pascal


Correct Option: A

The Difference Engine was invented by ?

  1. Charles Babbage

  2. J.H. Muller

  3. Bill Gates

  4. Blaise Pascal


Correct Option: A

Which is the first successful high level programming language?

  1. C

  2. C++

  3. QBASIC

  4. FORTRAN


Correct Option: D
  1. Mario

  2. Spartan

  3. Spacewar

  4. Prince of Persia


Correct Option: C

What is the name of the first computer used by the US Government?

  1. APPLE

  2. IBM

  3. UNIVAC

  4. ENIAC


Correct Option: C

Which among the following was involved in the development of ALGOL and Shortest Path Algorithm?

  1. Charles Babbage

  2. Edsger Wybe Dijkstra

  3. Robert Noyce

  4. Gordon Moore


Correct Option: B

In Second Generation of Computers which Of the following replaced Vacum Tubes?

  1. Transistors

  2. Registers

  3. Capacitors

  4. Chips


Correct Option: A

const int x = 5; int main(int argc, char** argv) { int x[x]; int y = sizeof(x) / sizeof(int); return 0; }

  1. 0

  2. 5

  3. 20

  4. undefined


Correct Option: B

int x = 5; class x { }; int main(int argc, char** argv) { class x y; return 0; }

  1. True

  2. False


Correct Option: A

#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; }

  1. 5

  2. 3

  3. 0

  4. undefined


Correct Option: D

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; }

  1. 0

  2. 5

  3. undefined

  4. 1


Correct Option: C
- Hide questions