Technical Quiz
  1. Which of the following languages is more suited to a structured program?

    1. PL/1
    2. FORTRAN
    3. BASIC
    4. PASCAL
  2. The 2's complement of a binary no. is obtained by adding.....to its 1's complement.

    1. 0
    2. 1
    3. 10
    4. 12
  3. What is the term used for describing the judgmental or commonsense part of problem solving?

    1. Heuristic
    2. Critical
    3. Value based
    4. Analytical
  4. Evaluate the following expression: 3>6&&7>4

    1. True
    2. False
  5. Which of the following refers to the associative memory?

    1. The address of the data is generated by the CPU
    2. The address of the data is supplied by the users
    3. There is no need for an address i.e. the data is used as an address
    4. The data are accessed sequentially
  6. What is the time, space complexity of following code:

    
              int a = 0, b = 0; 
              for (i = 0; i < N; i++) {
                  a = a + rand(); 
              } 
              for (j = 0; j < M; j++) { 
                  b = b + rand(); 
              } 
                
    1. O(N * M) time, O(1) space
    2. O(N + M) time, O(N + M) space
    3. O(N + M) time, O(1) space
    4. O(N * M) time, O(N + M) space
  7. Identify the person in following picture?

    quiz puzzle
    1. Tim Berners-Lee
    2. Geoffrey Hinton
    3. Charles Babbage
    4. John McCarthy