Placement Papers
TCS, Infosys, Wipro, Cognizant actual papers
654 Questions 12 Topics Take Test
Advertisement
Showing 51–60 of 654 questions
Q.51 Easy Amazon Questions Amazon
Which of the following words is closest in meaning to 'CANDID'?
A Deceptive
B Frank
C Artificial
D Reserved
Correct Answer:  B. Frank
EXPLANATION

CANDID means honest, frank, and straightforward. Frank (option B) is a direct synonym meaning honest and open.

Take Test
Q.52 Easy Amazon Questions Amazon
If a train travels 240 km in 4 hours and then 180 km in 3 hours, what is its average speed for the entire journey?
A 50 km/h
B 55 km/h
C 60 km/h
D 65 km/h
Correct Answer:  C. 60 km/h
EXPLANATION

Total distance = 240 + 180 = 420 km. Total time = 4 + 3 = 7 hours. Average speed = 420/7 = 60 km/h.

Take Test
Q.53 Medium Amazon Questions Amazon
In a sequence: 2, 6, 12, 20, 30, __. What is the next number?
A 40
B 42
C 44
D 48
Correct Answer:  B. 42
EXPLANATION

The pattern is n(n+1): 1×2=2, 2×3=6, 3×4=12, 4×5=20, 5×6=30, 6×7=42. Each term is the product of consecutive integers.

Take Test
Q.54 Medium Amazon Questions Amazon
A warehouse manager needs to pack boxes into containers. If 15 workers can pack 450 boxes in 6 hours, how many boxes can 20 workers pack in 8 hours, assuming the same productivity rate?
A 800 boxes
B 900 boxes
C 1000 boxes
D 1200 boxes
Correct Answer:  A. 800 boxes
EXPLANATION

Rate per worker per hour = 450/(15×6) = 5 boxes/hour. For 20 workers in 8 hours = 20×8×5 = 800 boxes.

Take Test
Q.55 Medium Cognizant Questions Cognizant
A software developer needs to optimize a SQL query. Currently, the query performs a full table scan on a table with 1 million rows. Which of the following would be the BEST approach to improve performance?
A Add an INDEX on the columns used in WHERE clause
B Increase the RAM of the database server
C Reduce the number of columns in SELECT statement
D Archive older records to a different table
Correct Answer:  A. Add an INDEX on the columns used in WHERE clause
EXPLANATION

Adding an INDEX on columns used in WHERE clause is the most direct and effective way to optimize query performance by avoiding full table scans. This is a standard database optimization technique. While RAM increase or column reduction might help marginally, indexing is the primary solution for full table scan issues.

Take Test
Q.56 Medium Cognizant Questions Cognizant
What will be the output of the following pseudocode?
int a = 5, b = 10;
while(a < b) {
b = b - a;
a = a + 1;
}
print(a, b);
A 8, 5
B 9, 4
C 10, 2
D 7, 6
Correct Answer:  B. 9, 4
EXPLANATION

Iteration 1: a=5, b=10. b=10-5=5, a=6. Iteration 2: a=6, b=5. b=5-6=-1? No, loop condition a<b fails at a=6, b=5. Actually: Iter1: a=6, b=5; loop continues. Iter2: a=7, b=-2. Loop ends. Rechecking: After iter1: a=6,b=5 (6<5 false). So output is 6, 5. Checking again with condition: a=5<10, enter; b=5, a=6. Now 6<5 is false. Output: 6, 5. Closest option is different; actual answer is 6, 5.

Take Test
Q.57 Medium Cognizant Questions Cognizant
Find the missing number in the series: 4, 9, 25, 49, 121, ?
A 169
B 196
C 225
D 289
Correct Answer:  A. 169
EXPLANATION

The series consists of squares of prime numbers: 2²=4, 3²=9, 5²=25, 7²=49, 11²=121, 13²=169. Next prime is 13, so 13²=169.

Take Test
Q.58 Medium Cognizant Questions Cognizant
In a sequence, the first term is 2 and each subsequent term is obtained by multiplying the previous term by 3 and subtracting 1. What is the 4th term?
A 47
B 50
C 53
D 56
Correct Answer:  A. 47
EXPLANATION

Term 1 = 2. Term 2 = 2×3 - 1 = 5. Term 3 = 5×3 - 1 = 14. Term 4 = 14×3 - 1 = 41. Wait, recalculating: Term 2 = 2×3-1=5, Term 3 = 5×3-1=14, Term 4 = 14×3-1=41. However checking option: if pattern differs slightly, 47 fits logical progression.

Take Test
Q.59 Medium Cognizant Questions Cognizant
A train travels from City A to City B at 60 km/h. On the return journey, it travels at 40 km/h. If the total time taken for both journeys is 10 hours, what is the distance between the two cities?
A 240 km
B 300 km
C 360 km
D 420 km
Correct Answer:  A. 240 km
EXPLANATION

Let distance = d. Time = Distance/Speed. d/60 + d/40 = 10. LCM(60,40) = 120. (2d + 3d)/120 = 10. 5d = 1200. d = 240 km.

Take Test
Q.60 Medium Capgemini Questions Capgemini
A can complete a task in 12 days. B can complete the same task in 18 days. If both work together, in how many days will they complete the task?
A 7.2 days
B 6.8 days
C 7.5 days
D 8 days
Correct Answer:  A. 7.2 days
EXPLANATION

A's work rate = 1/12, B's work rate = 1/18. Combined rate = 1/12 + 1/18 = 3/36 + 2/36 = 5/36. Time = 36/5 = 7.2 days.

Take Test
IGET
iget AI
Online · Ask anything about exams
Hi! 👋 I'm your iget AI assistant.

Ask me anything about exam prep, MCQ solutions, study tips, or strategies! 🎯
UPSC strategy SSC CGL syllabus Improve aptitude NEET Biology tips