TCS NQT Questions V1.0
TCS NQT Questions V1.0
TCS NQT Questions V1.0
Pattern update:
Here is the confirmed pattern of the TCS NQT, as per information from test-takers of
slot 1.
1. No advanced sub-sections
2. On-screen calculator available
3. Negative marking applicable
English
Slot 1-
PASSAGE: In the game of cricket, any side with a pair of bowlers of complementing
superior qualities prove invincible. The current generation would know Bhuvi,
Bumrah or Starc-Cummins pairs better than their own parents. So, let me dissect a
pair that ruled the cricketing world during the fifties and early sixties. Brian Statham
and Fred Trueman of England proved to be a lethal combination that every batsman
wanted to avoid playing. Stantham was a bowler of immaculate accuracy, nagging
length and lyrical run-up. Oxymoronically, his virtues were the basis for his
misfortunes. Knowing that he would bowl in a manner that’s unplayable, batsmen
were more smug in defending his balls than when playing an erratic bowler.
Trueman nicknamed as Fiery had a long delivery stride and made no bones about
his intentions to test batsman’s physical and mental strength. The ball would flash
past the bat in moments of incredibility with the batsman thanking his Maker, if the
ball missed his limbs and occasionally the stumps.
1. Which one of the following sentences has an appropriate bold part that can
be replaced with lethal?
a. The series of never-ending bubbles rejoiced the children to any end
b. The never-say-die team won the tournament for the tenth time.
c. “Mount vesuvius“ eruption proved to be completely ruinous to pompeii
d. The life-saving drug administered to the patient brought him back to his
elements
Answer: C
2. Any team with two bowlers sharing the required traits is:
a. Arrogant to its opponents
b. vulnerable to choke
c. hard to defeat
d. insignificant in its contribution.
Answer: C
Cloze passage:
Digital twin in automotive industry presents an opportunity to pair virtual and
physical worlds leveraging different technologies such as IoT, big data analytics, and
simulation techniques to re-engineer critical processes as below.
Vehicle development: Integrates data across the product lifecycle to enable data-
driven vehicle concept, informed design through rapid assessment of change
impacts and early detection of issues, and accurate and accelerated design
verification.
Vehicle sales and service: Captures real-time field insights on driver preferences,
product features’ uptake, vehicle performance, and service history to create an
interactive user experience on the sales floor and enable proactive and predictive
after-sales service.
Quantitative Aptitude –
Slot 1 –
1. In a country, 60% of the male citizen and 70% of the female citizen are eligible to
vote. 70% of the male citizens eligible to vote voted, and 60% of female citizens
eligible to vote voted. What fraction of the citizens voted during the election?
a. 0.49
b. 0.42
c. 0.48
d. 0.54
Ans: 0.42
2. A lady had some socks and hats in her closet - 17 blue, 47 red, and 24 yellow.
The light are out and it is totally dark. In spite of the darkness, she can make out the
difference between a hat and sock. She takes out an items out of the closet only if
she is sure that it is a sock.How many socks must she take out to make sure she has
two socks of each colour?
a. 73
b. 64
c. 57
d. 55
Ans: 73
3. In function P(x,y) = 85x - (50y + 150000). What value indicates the increase in P
that corresponds to increase in x, when y is kep a constant?
a. 85
b. 135
c. 35
d. 50
Ans: 85
4. A clock is started at noon. By 10 minutes past 5, the hour hand has turned
through.
a. 155 degree
b. 145 degree
c. 160 degree
d. 150 degree
5. Ram Speaks truth 40% of the time and Laxman speaks truth 60% of the time.
Percentage of cases Ram and Laxman are likely to contradict each other in stating
the same fact is________:
Answer: 52%
Kinematic viscosity (k) of a fluid is a measure of its resistive flow under gravity’s
influence. It’s given by the equation.
k=n/d where
n is dynamic viscosity; its dimension is Force Time / Area
d is density (mass/volume)
What’s the dimension of kinematic viscosity?
a. L^-2T^-2
b. L^-2T
c. LT^-2
d. L^2T^-1
Answer: L^2T^-1
8. Uma has 50 red and 50 blue balls. She has two bowls with her. She has to
distribute the balls in these two bowls in such a way that none of the bowls are left
empty. If one were to choose one of the two bowls at random and them randomly
draw a ball from it, the probability of the ball being red is maximized. After this
distribution, there will be a total of ______ balls in the bowl with a larger number of
balls.
Answer: 99
Programming Logic –
1. What is the output of the following Java program?
Class Super
{
Static String greeting() {return “Goodnight”;}
String name() {return “Ram”;}
}
Class Sub extends Super
{
Static String greeting () {return “Hello”;}
String name() {return “Bheem”;}
}
Public class Test
{
Public static void main {String[]args)
{
Super s=new Sub();
System.outprintln(s.greeting()+”,”+s.name();
}
}
Answer: Good night Bheem