IGATE Placement Papers 2

download IGATE Placement Papers 2

of 5

Transcript of IGATE Placement Papers 2

  • 8/19/2019 IGATE Placement Papers 2

    1/9

    naradha.in

    naradha.in

    IGATE Placement Papers

    1. What do you understand by 1 nibble?

    2. Represent 1024 in hexadecimal and octal terms.

    3. What is the role of a compiler?

    4. Is Fortran used as a scientific language? - True/ False

    5. In windows NT what does NT stand for?

    6. Which of these cannot be considered as an input device?

    A. Keyboard

    B. CD Disk

    C. Mouse

    D. Light pen

    7. Which of these cannot be considered as a pointing device?

    A. Mouse

    B. Light pen

    C. Joystick

    D. None

  • 8/19/2019 IGATE Placement Papers 2

    2/9

    naradha.in

    naradha.in

    8. Who is considered as the father of computer?

    9. Power PC is a product of? (Multiple options correct)

    A. Microsoft

    B. IBM

    C. Motorola

    D. Intel

    E. Apple

    10. Name the first supercomputer built in India.

    11. Which of the following companies does not manufacture chips?

    A. Intel

    B. HP

    C. Motorola

    D. Microsoft

    12. Give the abbreviations for the following:

    LAN – 

    WAN – 

    FDD – 

    BIT – 

  • 8/19/2019 IGATE Placement Papers 2

    3/9

    naradha.in

    naradha.in

    DMA – 

    13. Information may be considered as?

    A. Message

    B. Data

    C. Processed Data

    D. None of the above

    14. Which of the following cannot be considered as networking?

    A. Internet

    B. Ethernet

    C. Arcnet

    D. None

    15. One gigabyte is the measure of what?

    A. 2^30 bytes

    B. 2^20 bytes

    C. 2^10 bytes

    D. None

    16. Oracle is a relational Data base ____________ system.

  • 8/19/2019 IGATE Placement Papers 2

    4/9

    naradha.in

    naradha.in

    17. In oracle what does a table mean?

    18. What do you mean by a Queue?

    19. What do you mean by Stack?

    20. What processor was used in the first IBM powered PC?

    A. 8086

    B. Zig4

    C. Intel

    D. 8088

    21. List 2 differences between 80286 and 80287.

    22. In bubble sort what is the number of comparisons required?

    23. In binary comparison what is the total number of comparisons of an item in 100 items?

    A. 25

    B. 50

    C. 100

    D. 10

  • 8/19/2019 IGATE Placement Papers 2

    5/9

    naradha.in

    naradha.in

    24. What are the numbers of entry values present ideally in a subroutine?

    25. Which of these does not form a storage device?

    A. Printer

    B. CD ROM

    C. Disk

    D. None of these

    26. Char S;

    Char S*6+ = “Hello”; 

    Printf(“%s”,S*6+); 

    What is the output of this program?

    27. How many times will the loop of the below program run?

    28. What is the output of the following program?

    29. What is the output of the following program?

    30. What is the output of the following program?

    31. Find (int x, int y)

    {return ((x call find(a, find (a,b))}

  • 8/19/2019 IGATE Placement Papers 2

    6/9

    naradha.in

    naradha.in

    Is used to find

    A. Maximum of a,b

    B. Minimum of a,b

    C. Positive difference of a,b

    D. Sum of a,b

    32. An integer needs 2 bytes, the maximum value of that unsigned integer can be?

    A. 2^16 – 1

    B. 2^15 – 1

    C. 2^8 – 1

    D. 2^16

    33. If y is an integer type, then the given expressions

    3 * (y-8)/9 and (y-8)/9*3 will give rise to

    A. Same value

    B. Different values

    C. May or may not yield same values

    D. None of these

    34. 5 – 2 – 3 * 5 – 2 will give its output as 18 if and only if

  • 8/19/2019 IGATE Placement Papers 2

    7/9

    naradha.in

    naradha.in

    A. – is considered as left associative and * has a positive precedence over – 

    B. –is considered as right associative and – has precedence over *

    C. – is considered as right associative and * has precedence over – 

    D. None

    35. Printf(“%f”9/5) 

    Will print

    A. 1.8

    B. 2.0

    C. 1.0

    D. None of the above

    36. The process by which one bit pattern is submerged into another by means of bit wise operation is

    called

    A. Chopping

    B. Pruning

    C. Biting

    D. Masking

    37. What does scanf function do?

  • 8/19/2019 IGATE Placement Papers 2

    8/9

    naradha.in

    naradha.in

    A. Compilation of error

    B. Terminates reading input in many lines

    C. Both

    D. None

    38. Ceil(-2.8) = ?

    A. 0

    B. -3

    C. -2

    D. 2

    39. Main ()

    {

    Printf(“%u”,main()); 

    }

    A. Infinite loop

    B. Execution Error

    C. Print garbage

    D. None

    40. Consider two functions scanf and sscanf.

    A. In C there is no traditional function called sscanf

  • 8/19/2019 IGATE Placement Papers 2

    9/9

    naradha.in

    naradha.in

    B. Sscanf is equivalent to scanf() except input characters are made from sting s

    C. Sscanf is totally comparable to scanf

    D. None of the above