TVS Previous Years Solved Sample Placement Papers
- QAR, RAS, SAT, TAU, _____
(A) UAV
(B) UAT
(C) TAS
(D) TAT
Ans: A
- ZA5, Y4B, XC6, W3D, _____
(A) E7V
(B) V2E
(C) VE5
(D) VE7
Ans: D
- A man owns 2/3 of a market research bureau business and sells 3/4 of his shares for Rs. 75,000. What is the business's total value?
(A) 1,00,000
(B) 2,00,000
(C) 1,50,000
(D) 2,50,000
Ans: C
- 12 file cabinets require 18 feet of wall space. How much space will 30 cabinets need?
(A) 20
(B) 30
(C) 35
(D) 45
Ans: D
- A monkey climbs 6 meters and falls 3 meters in alternate minutes. How long does it take to climb a 60-meter tree?
(A) 35 minutes
(B) 37 minutes
(C) 32 minutes
(D) 34 minutes
Ans: D
- 3, 18, 4, 24, 5, 30, ?
(A) 1
(B) 6
(C) 3
(D) 4
Ans: B
- If three numbers are added in pairs, the sums are 10, 19, and 21. Find the numbers.
Ans: 6, 4, & 15
- Q is as much younger than R as he is older than T. If the sum of the ages of R and T is 50 years, what is the definite difference between R and Q's age?
(A) 1 year
(B) 2 years
(C) 25 years
(D) Data inadequate
(E) None of these
Ans: D
- The age of a father 10 years ago was thrice the age of his son. Ten years hence, the father's age will be twice that of his son. What is the ratio of their present ages?
(A) 5:2
(B) 7:3
(C) 9:2
(D) 13:4
Ans: B
-
On January 10th, with the temperature at 15�F, it snows all day. On how many lines will service be affected, including both morning and afternoon?
(A) 2
(B) 3
(C) 4
(D) 5
Answer: (D)
-
On August 15th, with the temperature at 97�F, it begins to rain at 1 PM. What is the minimum number of lines on which service will be affected?
(A) 2
(B) 3
(C) 4
(D) 5
Answer: (C)
-
On which of the following occasions would service on the greatest number of lines be disrupted?
(A) A snowy afternoon with the temperature at 45�F
(B) A snowy morning with the temperature at 45�F
(C) A rainy afternoon with the temperature at 45�F
(D) A rainy afternoon with the temperature at 95�F
Answer: (B)
-
What is the value of z?
int z,x=5,y=-10,a=4,b=2;
z = x++ - --y * b / a;A: 5
B: 6
C: 10
D: 11
Ans: B -
What is the output of the program?
void main()
{
int const * p=5;
cout<<++(*p);
}A: 5
B: Memory value
C: Compiler error
D: Garbage value
Ans: C -
What is the output of the program?
main()
{
char s[ ]="man";
int i;
for(i=0;s[ i ];i++)
cout<}A: mmmm
aaaa
nnnnB: man
C: Compiler error
D: None of the above
Ans: B -
What is the output of the program?
main()
{
float me = 1.1;
double you = 1.1;
if(me==you)
cout<<"I love U";
else
cout<<"I hate U";
}A: I hate U
B: I love U
C: Garbage value
D: None of the above
Ans: A