Font size
WorksheetsTCS NQT Mock Test 1,VERBAL ABILITY,QUANTITATIVE APTITUDE,PROGRAM
Total questions: 41
Worksheet time: 54mins
Even though a person may believe that ______ acting impartially, his mind may unconsciously be affected by bias.
he were
it were
he was
one was
The poor man _____ when he heard the tragic news.
broke into
broke up
broke down
broke in
Sherry had finished her work, so I ______ her to help me.
asked
had asked
ask
have asked
The police prevented him ____ entering the premises.
to
for
into
from
I haven’t watched a movie _____ a long time.
since
for
about
around
1. They new employee ______ everybody
a) gets along b) gets with
c) gets around d) gets along with
gets along
gets with
gets around
gets along with
The financial crisis caused ____ trouble.
farther
further
besides
advanced
Absentmindedly, I hurt _____ while repairing the motor.
mine
my
myself
me
He ____ his shirt to a nail projecting from the wall.
hanged
hang
has hanged
hung
Either my father or my brothers _____ going to sell the house.
are
is
was
will
The minister, who was convicted along with his brothers many times but who also seemed, like a cat, to have several political lives. ____ finally gone to jail.
has
have
had
are
I _____ working from the first week of last month.
began
shall begin
would begin
beginning
The anxious mother ____ for her child in the dark, as soon as the power failed.
was touching
was feeling
was moving
was seeing
Mr. Subhendu could not get up early due to fever, _____ he reached the centre in time for his class.
and
still
though
so
Being left handed, the workman accidentally loosened the screws _____ tightening them.
because of
inspite of
instead of
due to
P(x)=11−x2+p and Q(x)=9+x2+q, where p and q are both positive. If P(4) Q(5)>0, which of the following represents all the possible values of p?
(−∝,7)
(7,∝)
(−∝,5)
(5,∝)
A bag contains one-rupee coins, fifty-paise coins and ten-paise coins. The number of one-rupee and half-rupee coins are in the ratio 2 : 5 and the fifty-paise and ten-paise coins are in the ratio 4 : 9. If the total money in the bag is Rs.2,250, find the number of one-rupee coins.
800
100
400
1000
The sum of the discount offered on an article and the profit made on it, is equal to twice the excess of twice its marked price over thrice its cost price. Find the percentage by which the article was marked above its cost price.
40 %
66 32%
50 %
Either (1) or (2)
Pipes X, Y and Z are fitted to a tank. X can fill the tank in twice the time taken by all the 3 pipes to fill the tank. Y can fill the tank in 12 hours less than 4 times the time taken by all the 3 pipes to fill the tank. Z can fill the tank in 12 hours less than 7 times the time taken by ll the 3 pipes to fill the tank. Which pipe takes the least time to fill the tank?
X
Y
Z
All the pipes take the same time
The arithmetic mean of a series of 20 observations is 15. The arithmetic mean of the series obtained by dividing each term of the series by 1/5 is ______ .
3
75
5
15
If a ∇ b ∇ c=a2+b3+c3, a ∆ b ∇ c=a2+b2+c2 a ∇ b ∆ c=a2+b3+c2 and a ∆ b ∇ c=a3+b2+c3, Find the value of (2 ∇ 3 ∆ 4)(2 ∆ 3 ∇ 4)
47/81
81/47
29/47
47/29
The average of integers is . If none of the integers is less than , the largest of the `integers cannot exceed _______.
150
210
240
180
Two men started simultaneously from towns P and Q towards Q and P respectively. On reaching their destinations, each of them turned back and without changing their speeds, walked towards their starting points. The two men met at a distance of from for the first time and at a distance of from , for the second time (after both had turned back and were returning to their starting points). Find the distance PQ .
53 km
58 km
48 km
63 km
In a college, students like Maths, 300 students like Physics and students like Chemistry. 34 students like both Maths and Chemistry students like only Chemistry, students like only Maths and students like all the three subjects and every student likes at least one subject. How many students like exactly one subject?
492
572
584
468
If θ lies in the first quadrat and secθ−tanθ=3/4, find the value ofcotθ+cosecθ.
6
7
10
5
A question paper consists of four sections with six questions in each section. A candidate has to select three sections and has to answer 10 questions answering at least two from each of the selected sections. In how many ways can he answer the paper?
(a)
In a textile shop, the number of designer shirts is thrice the number of formal shirts. The shop also has sarees of colours – brown, black and yellow. The number of black sarees is twice the number of brown sarees. The number of yellow sarees is 5 times the number of brown sarees. The number of sarees is twice the number of shirts. Find the least possible number of shirts and sarees in the shop.
(a)
Six boxes contain A, B, C, D, E and F marbles, where A < b = C < D = E < F. How many ordered triplets of 3 boxes can be selected such that the number of marbles in the first box is less than the number of marbles in either of the other two boxes?
(a)
P is a two−digit number. If 7P+P3 is divisible by 10, how many values can P take?
(a)
A man goes to a Las Vegas casino during his three – day stay. On the first day, he doubles the money he has and spends $ 160. On the second day, he triples the money he has and spends $ 130. On the third day, he quadruples the money he has and spends $ 200. If he is left with twice as much money as he had at the beginning of the first day, how much money (in $) did he have at the end of the first day?
(a)
What is the output of the following program?
void main ( )
{
extern int x:
x = 100;
printf(*%d\n”,x);
}
0
100
garbage value
error
The output printed by program given below is _____
main ( )
{
int x = 5, y = 6 ;
x + = (x + +) + (+ + x);
y + = (+ + y) +(y + +);
printf(“ % d, % d” , x, y);
}
19, 23
19, 22
12, 19
19, 9
Consider the program given below
int count (int n)
int count (int n)
{
int c = 0,m = 0;
while (n! = 0 )
{
m = n% 10;
c + = m;
n=n/10 ;
}
return c;
}
What value will be returned by the given function?
The reverse of given number
The sum of digits present in given number .
Counts the number of digits present in given number
It returns the remainder of number after dividing by .
Consider the C-Program given below.
main ( )
{
int x=6 ;
int *p= &x;
printf(“%d”, _____ );
}
What should be filled at blank if output printed is 7?
∗++p
∗p++
++∗p
(∗p)++
int x ;
void foo(int n)
{
if (n = =0) return;
X++ ;
foo(n / 10);
}
Consider the value '1021' is passed as an argument to the function 'foo' and the value of x is printed in main ( ), then the value x denotes.
Number of digits present in given input 1021
Sum of digits present in given input 1021.
Number of times function ‘foo’ get called excluding call from main ( ).
Both (1) and (3)
What will be the output of the following program?
void funct (int, int);
void int funct 1 (int , int) ;
main ( )
{
int a, b ;
a = 10, b = 20;
funct (a, b) ;
printf(“%d, %d”, a, b);
}
void funct (int a, int b)
{
int c;
c = a;
a = b;
b = c;
funct 1 (& a, & b) ;
}
void funct 1 (int a, int b)
{
a = a + *b ;
b = a - *b ;
a = a - *b ;
}
10, 20
20, 10
20, 20
10, 10
1. What will be returned by the malloc ( ) if the required memory is not available, in the following program?
void funct (int, int);
void int funct 1(int*, int *);
main ( )
{
int a, b ;
a = 10, b = 20;
funct (a, b);
printf(“% d, %d”, a, b);
}
void funct (int a, int b)
{
int c;
c = a;
a = b;
b = c;
funct 1 ( & a, &b);
}
void funct 1 (int a, int b)
{
a = a + * b ;
b = a - *b ;
}
If the answer is NULL, type 0
else , type 1
(a)
Which condition is used in a circular queue to check whether Queue is full?
FRONT = NULL, REAR = NULL
FRONT = N, REAR = N
FRONT = REAR + 1
REAR = FRONT + 1
Let x and y denote positive integers. Suppose a function Q is defined recursively as follows:
What is the value of Q (3,4)?
(a)
The number of nodes present in a strict binary tree with 10 – leaves is (a) .
Write a program (in one of the five languages –C,C++,Java,Perl,Python) which will print the sum of all the prime numbers between 100 and 600 ?
