Integra Previous Years Solved Sample Placement Papers
-
What is the output of the following program?
#include <iostream> using namespace std; class rect { int x, y; public: void val (int, int); int area () { return (x * y); } }; void rect::val (int a, int b) { x = a; y = b; } int main () { rect rect; rect.val (3, 4); cout << "rect area: " << rect.area(); return 0; }
(A) rect area: 1
(B) rect area: 12
(C) rect area: 24
(D) None of the mentioned
Ans: (B) -
QUESTION: __________ is a large printed circuit board having many chips, ports, controllers, and other electronic components mounted on it.
A: Integrated Circuit
B: Motherboard
C: Chip set
D: Firewire
Ans: B -
QUESTION: Which among the following are characteristics of the motherboard?
A: Only form factor
B: Only Chip set
C: Only Processor Socket
D: All of these
Ans: D -
QUESTION: Form factor refers to
A: Geometry
B: Electrical requirements
C: Dimensions
D: All of these
Ans: D -
QUESTION: __________ characteristic of motherboard should be considered to maximize the computer's upgradability.
A: Form Factor
B: Chip set
C: Processor socket
D: All from (A) to (C)
Ans: D -
QUESTION: Which of the following motherboard is an old model motherboard?
A: AT
B: ATX
C: XT
D: Baby AT
Ans: A -
QUESTION: Which of the following motherboard has no ports?
A: AT
B: ATX
C: XT
D: Baby AT
Ans: A -
QUESTION: Pentium -I, Pentium-II, and Pentium – MMX processors used in __________ type of motherboards.
A: AT
B: ATX
C: XT
D: Baby AT
Ans: D -
QUESTION: Pentium -III Processors are used in __________ type of motherboards.
A: ET
B: ATX
C: XT
D: Baby AT
Ans: B -
QUESTION: Both Pentium III and Pentium IV processors are supported by __________ motherboards.
A: XT
B: AT
C: Baby AT
D: ATX
Ans: D -
QUESTION: Processors supported by ATX motherboard are
A: Only Pentium-IV, Dual Core
B: Only Dual Core and Core 2 Duo
C: Quad Core, i3, i5, and i7
D: All of the above
Ans: D -
When struct is used instead of the keyword class, what will happen in the program?
(A) Access is public by default
(B) Access is private by default
(C) Access is protected by default
(D) None of the mentioned
Ans: (A)