wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

WAE TCS Mock NQT-17-Oct

Total questions: 35

Worksheet time: 55mins

Name
Class
Date
1.

What change needs to be made to this sentence?


The dog's food was scattered all over my friends' floor. He was so mad at his dog!

a)

Change dog's to dogs'

b)

Change friends' to friend's

c)

Change floor to floors

d)

Change dog's to dogs

2.

Select the best version of the underlined part of the sentence.


Several theories about what caused dinosaurs to have extinction exist, but scientists are still unable to reach a concrete conclusion.

a)

about what caused dinosaurs to have extinction exist

b)

about what caused dinosaurs to become extinct exist

c)

about the causes of the dinosaur extinction exist

d)

regarding the cause of extinction of dinosaurs exist

3.

Select the best version of the underlined part of the sentence.


It is important that software companies offer tech support to customers who are encountering problems.

a)

to customers who are encountering problems

b)

because not all customers encounter problems

c)

with customers who encounter problems

d)

to customer who is encountering difficulties

4.

Select the best version of the underlined part of the sentence.


Children who aren't nurtured during infancy are more likely to develop attachment disorders, which can cause persisting and severely problems later in life.

a)

which can cause persistent and severe problems

b)

that can cause persisting and severe problem

c)

they can cause persistent and severe problem

d)

which can cause persisting and severely problems

5.

Select the best version of the underlined part of the sentence.


While speed is a measure of how fast an object is moving, velocity measures how fast an object is moving and also indicates in what direction it is traveling.

a)

and only indicated in what direction

b)

and also indicate in which directions

c)

and also indicates in what direction

d)

and only indicates in which direction

6.

Select the best version of the underlined part of the sentence.


Some students can't be admitted to the universities because of their poor scores.

a)

universities, because of their poor scores.

b)

universities because they are poor.

c)

because of their poor scores.

d)

universities, because they have poor scores.

7.

Select the best version of the underlined part of the sentence.


The most universities require SAT / ACT scores as one of the admission requirements.

a)

Mostly university requires SAT / ACT scores

b)

The most universities require SAT / ACT scores

c)

Most universities require SAT / ACT scores

d)

Mostly universities require SAT / ACT scores

8.

Select the best version of the underlined part of the sentence.


Many companies are now using social networking sites like Facebook and MySpace to market there service and product.

a)

to market there service and product

b)

to market their services and products

c)

and market their service and products

d)

which market their services and products

9.

Select the best version of the underlined part of the sentence.


The bizarre creatures known by electric eels are capable of emitting an incredible 600 volts of electricity.

a)

The bizarre creatures known by electric eels

b)

A bizarre creature known as electric eels

c)

The bizarre creatures known to electric eels

d)

The bizarre creatures known as electric eels

10.

Select the best version of the highlighted part of the sentence.


Ms. Rose planning to teach a course in biology next summer.

a)

planning

b)

are planning

c)

with a plan

d)

plans

11.

The remainder when (3)67! is divided by 80:

a)

0

b)

1

c)

2

d)

can't be determined

12.

How many factors of 25 * 36 * 52 are perfect squares?

a)

18

b)

24

c)

36

d)

8

13.

A number D236D0 can be divided by 36 if D is

a)

8

b)

6

c)

1

d)

more than 1 values are possible

14.

All the page numbers from a book are added, beginning at page 1. However, one page number was added twice by

mistake. The sum obtained was 1000. Which page number was added twice?

a)

44

b)

45

c)

10

d)

12

15.
For loop is _________.
a)
Function Controlled
b)
Entry Controlled
c)
Exit Controlled
d)
None
16.
Comment on the output of this C code?
 int main()
  {
 float f1 = 0.1;
  if (f1 == 0.1)
  printf("equal\n");
  else
  printf("not equal\n");
  }
a)
equal
b)
not equal
c)
depends on compiler
d)
None
17.
What will be the data type returned for the following function?
  int func()
  {
 return (double)(char)5.0;
  }
a)
char
b)
int
c)
double
d)
Return illegal
18.

int myArray[10] = {1,2,3,4,5,6,7,8,9}


What is the value of :

myArray[myArray[0]+myArray[4]];

a)

9

b)

8

c)

7

d)

6

19.

Consider the following code snippet


if (x<50)

if (x>=0 && x<=25)

x+=25;

else

x-=25;

else

if (x>=75 && x <= 100)

x-=25;

else

x+25;


What will be the final value of x if x=100?

a)

100

b)

75

c)

50

d)

25

20.

Which of the following statements is/are correct?

a. char middle_name='c';

scanf("%c", middle_name);

b. char middle_name="c";

scanf("%c", middle_name);

c. char middle_name='c';

scanf("%s",middle_name);

d. char middle_name='c';

scanf("%c", &middle_name);

a)

A is correct.

b)

B is correct.

c)

C is correct.

d)

D is correct.

21.
What is the error in the following code fragment?
float average [20];
average[20] = 15.25;
a)
A cast is required
b)
data not initialized
c)
A two-dimensional array is required
d)
Array Out-of-bounds error
22.

_____________________ allows the computer to make a choice between alternative conditions.

a)

control structure

b)

sequence structure

c)

selection structure

d)

iteration structure

23.

Eleven friends M, N, O, P, Q, R, S, T, U, V and W are sitting in the first row of the stadium watching a cricket match.

T is to the immediate left of P and third to the right of U. V is the immediate neighbour of M and N and third to the left of S. M is the second to the right of Q, who is at one of the ends. R is sitting next to the right of P and P is second to the right of O. Who is sitting in the center of the row?

a)

U

b)

V

c)

Q

d)

W

24.

Statements: All men are toys. Some toys are animals.

Conclusions:

1. All men are animals

2. All animals are toys

3. Some toys are men

4. All toys are men

a)

Only 4

b)

Only 2

c)

Only 3

d)

Only 1

25.

If the sum of 4 times a number A and 3 times a number B is equal to the sum of number B and seven times the number A, then what is the value of A:B?

a)

2:3

b)

3:2

c)

4:3

d)

3:4

26.

Statement: India is a democratic country

Conclusion:

1. No other country in the world is democratic. FALSE

2. There are many other countries in the world that are democratic. FALSE

a)

Only 1 follows

b)

Only 2 follows

c)

Both follows

d)

None follows

27.

Statement: An advertisement- "50% off on all Electronic Goods up till 31st January".

Conclusion:

1. After 31st January, no discount will be provided.

2. No sale of electronic goods after 31st January.

a)

Only 1 follows

b)

Only 2 follows

c)

Both follows

d)

None follows

28.

A walks from points Jammu to Delhi and at the same time B starts walking from Delhi to Jammu. After passing each other, they complete their journeys in 361 hours and 289 hours, respectively. Find the ratio of speed of A to that of B?

a)

17 : 19

b)

289 : 361

c)

361 : 289

d)

19 : 17

29.

A laborer is engaged for 30 days on the condition that he receives Rs.25 for each day he works and is fined Rs.7.50 for each day is absent. He gets Rs.425 in all. For how many days was he absent?

a)

10

b)

8

c)

9

d)

6

30.

Find the next number in the series

7 16 30 62 122 ?

a)

242

b)

244

c)

246

d)

248

31.

Deepak said to Nitin, "That boy playing with the football is the younger of the two brothers of the daughter of my father's wife." How is the boy playing football related to Deepak?

a)

Son

b)

Brother

c)

Cousin

d)

Brother-in-law

32.

Pointing towards a man, a woman said, "His mother is the only daughter of my mother." How is the woman related to the man?

a)

Mother

b)

Grandmaother

c)

Sister

d)

Daughter

33.

Joe is younger than Kathy.

Mark was born after Joe.

Kathy is older than Mark.

If the first two statements are true, the third statement is

a)

True

b)

False

c)

Uncertain

34.

Which word does NOT belong with the others?

a)

Inch

b)

Ounce

c)

Centimetre

d)

Yard

35.

Which word does NOT belong with the others?

a)

Dodge

b)

Flee

c)

Duck

d)

Avoid