wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Mock Test 4

Total questions: 75

Worksheet time: 2hrs 30mins

Name
Class
Date
1.

Read these sentences:


Jamie shouts, "Hooray!" when she realizes her birthday is today. She starts jumping up and down and is very boisterous. Her mother tells her to try to be calm as she waits for the cake to finish baking.


Which word is a synonym for the word boisterous as it is used in the sentence above?

a)

quiet

b)

loud

c)

calm

d)

soft

2.

Read the following sentences:


Todd's brother would not stop teasing him. Todd was so agitated by his brother that he had tears in his eyes and grunted in anger.


Which word is an antonym for the word agitated as it is used in the sentence above?

a)

calm

b)

frustrated

c)

angry

d)

bothered

3.
Are the words synonyms or antonyms?
center
middle
a)
Synonyms
b)
Antonyms
4.

What pair of words have almost the same meaning?

a)

break and destroy

b)

fall and decide

c)

help and take

d)

normal and strange

5.

After the hurricane hit, the family was in a perilous situation as the flood threatened their lives.


What does perilous mean in the sentence above?

a)

happy

b)

dangerous

c)

courageous

d)

ugly

6.

Which words from the sentences best help the reader understand the meaning of the word boisterous?

a)

birthday, cake, today

b)

calm, down, very

c)

realizes, “Hooray!”

d)

jumping up and down, shouts

7.

The wooden toy looks fragile. However, it is sturdy and strong.


What does the underlined word mean?

a)

well-made

b)

bumpy

c)

weak

8.

Zoey loved taking her dog Rufus to the dog park. They would play fetch, run around, and sometimes they would play with the other canines. The canines loved chasing each other around and barking at squirrels. After their trip to the dog park Rufus always fell asleep during the car ride home.


In the paragraph, the word canines means:

a)

Cat

b)

Dog

c)

Squirrel

9.

It is easy to see my brother's disdain for TikTok. When he sees me dancing, he starts to grumble and leaves the room.

a)

to have a fear of something

b)

to have a strong dislike for something

c)

to listen carefully

d)

to watch carefully

10.
David knew that the
advanced studies program
was rigorous. It would require
a great deal of reading and homework. Still, he felt he was up for the challenge. 
a)
boring
b)
difficult
c)
surprising
d)
shocking
11.
Who is the recipient of this email?
a)
Ana Chan
b)
Joey Kang
c)
Employment Contract
d)
Human Resource Manager   
12.
What is the main purpose of the text above?
a)
Safety manual for microwave ovens
b)
Safety information for repairing microwave ovens
c)
Steps for repairing microwave ovens
d)
Troubleshooting microwave ovens
13.
Michael wants to check balance of his annual leave. 
Which extension line should he call?
a)
1
b)
2
c)
Rose Ng
d)
Jack Neo
14.
If today is Wednesday, who is the duty lead 1?
a)
Siti
b)
Gabriel
c)
Joel
d)
Elisa
15.
What is the last step in operating a washing machine?
a)
Separate the clothes
b)
Add in the clothes and pour in the detergent
c)
Turn on your washer and wait
d)
Set the water temperature
16.
Who is this poster intended for?
a)
Students
b)
Parents
c)
Teachers
d)
Officer
17.
How much will you have to pay for the SmartSurf Premium plan?
a)
$638
b)
$368
c)
$118
d)
$0 
18.
Which month has the lowest electricity usage?
a)
January
b)
February
c)
March
d)
April
19.
What is the type of text shown above?
a)
Telephone message
b)
Telephone Bill
c)
Receipt
d)
Medical certificate 
20.
Who answered the call?
a)
Mr. Philip
b)
Sally
c)
Fatima Group
d)
CEO
21.
What is the purpose of the email?
a)
To advertise a new product
b)
To call for meeting
c)
To form a new project team
d)
To inform the project’s requirement 
22.
What is the subject of the email?
a)
Addictive Tips Team
b)
Notice
c)
Melvin Tan
d)
Karen
23.
According to the text, how much dietary fibre does one serving contain?
a)
895 KJ
b)
33.7 g
c)
11.9g   
d)
5.7g   
24.
What is the purpose of the sign above?
a)
Eating and drinking is allowed
b)
Fast food is not allowed
c)
Eating and drinking is not allowed   
d)
Only drinks are allowed 
25.
Where can you find this sign?
a)
In the MRT
b)
In the canteen
c)
In the hawker center    
d)
In the toilet   
26.
Who is this schedule intended for?
a)
Kitchen assistant
b)
Retail assistant
c)
Landscape technician
d)
Housekeeping assistant 
27.
When will this employee clean the fridge?
a)
Monday
b)
Tuesday
c)
Wednesday
d)
All of the above 
28.
What is the title of the above diagram?
a)
Cleaning Schedule
b)
Timetable
c)
Tuesday
d)
Checklist
29.
 Which month has the highest water usage?
a)
February
b)
March
c)
April
d)
May
30.
What is the type of text shown above?
a)
Telephone message
b)
Telephone Bill
c)
Receipt
d)
Medical certificate 
31.

If the insertion and deletion happens from both the ends then the queue is called a______Queue

a)

a) Deque

b)

b) Header

c)

c) Queue

d)

d) Circular Queue

32.

Process of inserting an element in stack is called ____________

a)

Create

b)

Push

c)

Evaluation

d)

Pop

33.

Entries in a stack are “ordered”. What is the meaning of this statement?

a)

A collection of stacks is sortable

b)

Stack entries may be compared with the ‘<‘ operation

c)

The entries are stored in a linked list

d)

There is a Sequential entry that is one by one

34.

What is the value of the postfix expression 6 3 2 4 + – *:

a)

1

b)

14

c)

74

d)

-18

35.

The data structure required to check whether an expression contains balanced parenthesis is?

a)

a) Stack

b)

b) Queue

c)

c) Array

d)

d) Tree

36.

Circular Queue is also known as ________

a)

a) Ring Buffer

b)

b) Square Buffer

c)

c) Rectangle Buffer

d)

d) Curve Buffer

37.

If the elements “A”, “B”, “C” and “D” are placed in a queue and are deleted one at a time, in what order will they be removed?

a)

a) ABCD

b)

b) DCBA

c)

c) DCAB

d)

d) ABDC

38.

What does the following function do for a given Linked List with first node as head?

void fun1(struct node* head)

{

if(head == NULL)

return;

fun1(head->next);

printf("%d ", head->data);

}

a)

a) Prints all nodes of linked lists

b)

b) Prints all nodes of linked list in reverse order

c)

c) Prints alternate nodes of Linked List

d)

d) Prints alternate nodes in reverse order

39.

Linked list data structure offers considerable saving in _____________

a)

a) Computational Time

b)

b) Space Utilization

c)

c) Space Utilization and Computational Time

d)

d) Speed Utilization

40.

To represent hierarchical relationship between elements, Which data structure is suitable?

a)

Dequeue

b)

Priority

c)

Tree

d)

Graph

41.

Match the following.


a) Completeness i) How long does it take to find a solution

b) Time Complexity ii) How much memory need to perform the search.

c) Space Complexity iii) Is the strategy guaranteed to find the solution when there in one.

a)

a-iii, b-ii, c-i

b)

a-i, b-ii, c-iii

c)

a-iii, b-i, c-ii

d)

a-i, b-iii, c-ii

42.

___________ is neither an algorithm nor a program.

a)

a.Computing

b)

b.Pseudo code

c)

c.Computer science

d)

d.None of the above

43.

Efficiency of an algorithm is measured by

a)

Time and Capacity complexity

b)

Time and Space complexity

c)

Speed and Space complexity

d)

Speed and Capacity complexity

44.

Data in the data structures are processed by operations like insertion, deletion, sorting, merging and

a)

Traversing

b)

Searching

c)

Retrieval

d)

Both A and B

45.

To measure Time complexity of an algorithm Big O notation is used which:

a)

A. describes limiting behaviour of the function

b)

B. characterises a function based on growth of function

c)

C. upper bound on growth rate of the function

d)

D. all of the mentioned

46.

If for an algorithm time complexity is given by O(1) then complexityof it is:

a)

A. constant

b)

B. polynomial

c)

C. exponential

d)

D. none of the mentioned

47.

If for an algorithm time complexity is given by O(n) then complexityof it is:

a)

A. constant

b)

B. linear

c)

C. exponential

d)

D. none of the mentioned

48.

Can We Implement Stack Using Queue Data structure

a)

Yes

b)

No

49.

Can We implement Queue data structure using stack data structure

a)

Yes

b)

No

50.

In a stack, if a user tries to remove an element from empty stack it is called _________

a)

Underflow

b)

Stack is Empty

c)

Overflow

d)

None of the above

51.

Which of the following best defines a class?

a)

Parent of an object

b)

Instance of an object

c)

Blueprint of an object

d)

Scope of an object

52.

Pure OOP can be implemented without using class in a program. (True or False)

a)

True

b)

False

53.

Which Feature of OOP illustrated the code reusability?

a)

Polymorphism

b)

Abstraction

c)

Encapsulation

d)

Inheritance

54.

Choose the attributes of Class: time

a)

Hours

b)

second

c)

get Hour

d)

Print Time

55.

Choose the behaviour of Class: time

a)

Hour

b)

Second

c)

PrintTime

d)

getHour

56.

Which of the following is associated with objects?

a)

State

b)

Behaviour

c)

Identity

d)

All the above

57.

What is it called where child object gets killed if parent object is killed?

a)

Aggregation

b)

Composition

c)

Encapsulation

d)

Association

58.

Combining Data and Functions into a single unit is called

a)

Abstraction

b)

Inheritance

c)

Encapsulation

d)

Polymorphism

59.

As a Vehicle user, we know how to use it but its internal working are not known. In OOPs Concept, this principle is known as

a)

Encapsulation

b)

Inheritance

c)

Abstraction

d)

Polymorphism

60.

Advantages of OOPs

a)

Code Reusability

b)

Modular Programming

c)

Easy Maintenance

d)

Security

61.

What percent of a day in 6 hours?

a)

25%

b)

50%

c)

33.33%

d)

60%

62.

A fruit seller had some apples. He sells 40% apples and still has 420 apples. What is the total number of apples he had originally?

(a)  

63.

Two-fifth

of one-third of three seventh of a number is 15.What is 40% of that number?

a)

205

b)

105

c)

150

d)

210

64.

Rakesh spent 30 percent of his monthly income on food items. Of the remaining amount he spent 60 percent on clothes and bills. Now he save five-seventh of the remaining amount and the he saves 120000 yearly, then find his monthly income.

a)

60000

b)

40000

c)

50000

d)

25000

65.

The length and breath of a rectangle are increased by 20% and 30%.The area of the resulting rectangle exceeds the area of the original rectangle?

a)

46%

b)

56%

c)

92%

d)

30%

66.

If the price of a product is first decreased by 25% and then increased by 20%, then what is the percentage change in the price?

a)

20%

b)

10%

c)

25%

d)

5%

67.

Water tax is is increased by 20% but its consumption is decreased by 20%.Then increase or decrease in the expenditure of the money is

a)

10%

b)

4%

c)

6%

d)

20%

68.

When the price of rice is increased by 30 percent, a family reduces its consumption such that the expenditure is only 20 percent more than before. If 50 kg of rice is consumed by family before, then find the new consumption of family

a)

43KG

b)

44KG

c)

45KG

d)

46KG

69.

Find 83.33% of 60

a)

50

b)

56

c)

33

d)

44

70.

Three students contested an election and received 1000, 5000 and 10000 votes, respectively. What is the percentage of the total votes the winning student gets?

a)

62%

b)

64%

c)

62.5%

d)

66%

71.

How many four digit number can be formed with the digits 5,9,1 and 3 only ?

a)

64

b)

256

c)

48

d)

40

72.

How many arrangement can be made from the word COMMERCE, such that all the vowels do not come together ?

a)

9000

b)

9500

c)

4500

d)

6000

73.

12 students participated in the competition and each get different score. In how many ways can three different prizes given ?

a)

1210

b)

1320

c)

1440

d)

12*12*12

74.

There are 36 boys and 28 girls in a class. For inter-school competition, 1 boy and 1 girl is to be selected. In how many ways can this selection be done?

a)

1000

b)

1024

c)

1008

d)

1320

75.

Out of 7 consonants and 4 vowels, how many words of 3 consonants and 2 vowels can be formed?

a)

24000

b)

25200

c)

26200

d)

2000