wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Assessment 2908

Total questions: 50

Worksheet time: 25mins

Name
Class
Date
1.

Find the sum of the co-primes of 48 less than 48.

a)

60

b)

16

c)

8

d)

384

2.

The sum of two numbers is 528 and their H.C.F. is 33. The number of pairs of numbers satisfying the above condition is :

a)

4

b)

6

c)

8

d)

12

3.

In what time will a sum of money double itself @ 20% per annum (p.a.) simple interest?

a)

10 years

b)

5 years

c)

2 years

d)

4 years

4.

In how many ways can the letters of the word DUMDUMDIGADIGA be arranged ?

a)

180

b)

90

c)

270

d)

none of these

5.

The ratio of age of A and B is 8:9 and the age of B is 2/3 of C’s age and age of C is 9/13 times the age of D. if the age of B is 18 years then the age of C is:

a)

36 years

b)

39 years

c)

27 years

d)

54 years

6.

2ab5 is a four-digit number divisible by 25. If the number formed from the two digits ab is a multiple of 13, then ab=?

a)

10

b)

25

c)

52

d)

65

7.

The number of distinct prime factors of 13013 is

a)

1

b)

2

c)

3

d)

4

8.

The number of number pairs lying between 40 and 100 with their H.C.F. as 15 is:

a)

3

b)

4

c)

5

d)

6

9.

The average of 7 consecutive number which are positive integers is 10. The average of lowest and highest such numbers is:

a)

7

b)

10

c)

15

d)

data insufficient

10.

A sum was put at simple interest at a certain rate for 2 years. Had it been put at 4% higher rate, it would have fetched Rs. 112 more. The sum is:

a)

1120

b)

1400

c)

1200

d)

8000

11.

In a certain code language ‘ tom kun sud’ means ‘ dogs are barking’ ‘ kun jo mop’ means ‘ dogs and horse’ and ‘ mut tom ko’ means ‘ donkeys are mad’. Which word in that language means ‘ barking’ ?

a)

kun

b)

sud

c)

tom

d)

jo

12.

If sand is called air, air is called plateau, plateau is called well, well is called island and island is called sky, then from where will a woman draw water ?

a)

Sky

b)

Air

c)

Well

d)

Island

13.

A person walks 1 km to his east and then he turns to south and walks for 5 km. Next, he turns east and walks 2 km. After this he turns to north and walk for 9 km. How far is he from his starting point?

a)

5 km

b)

4 km

c)

6 km

d)

can’t be determined

14.

In a certain code language, ‘ mink yang pe, means ‘ fruits are ripe’ ‘ pe lao may mink’ means ‘ oranges are not ripe’ and ‘ may penue mink’ means ‘ mangoes are not ripe’. Which word in that language means mangoes ?

a)

mink

b)

pe

c)

may

d)

nue

15.

If bangle is called cassette, cassette is called table , table is called game and game is called cupboard, then which is played in the tape recorder?

a)

Table

b)

Cupboard

c)

Bangle

d)

None of these

16.

A man started walking towards north, he walks 10 m and then turns to right, walks 5 m and turns to his right again and walks 10 m and turns to his left, walks 7 m and then turns to his right. At this point in which direction is he facing?

a)

East

b)

South

c)

South-east

d)

South-west

17.

If South-east becomes east and North-west becomes west and all the other directions are changed in the same direction. Then what will be the direction for north?

a)

North-west

b)

South-east

c)

South-west

d)

North-east

18.

Kali walks 10 km towards North. From there, he walks 6 km towards South. Then, he walks 3 km towards East. How far and in which direction is he with reference to his starting point?

a)

5 km West

b)

5 km North-east

c)

7 km East

d)

7 km West

19.

Soha is the niece of Saif. Saif’s mother is Sharmila. Kamla is Sharmila’s mother.Kamla’s husband is Hari. Krishna is the mother-in-law of Hari. How is Soha related to Hari.

a)

Daughter

b)

Great granddaughter

c)

Grand niece

d)

None of these

20.

If ‘P x Q’ means ‘P is daughter of Q’, ‘P+Q’ means ‘P is father of Q’, ‘PQ’ means ‘ P is the mother of Q’ and ‘P-Q’ means ‘P is the brother of Q’, then in the expression AB+C ExF, how is A related to F?

a)

Mother

b)

Aunt

c)

daughter-in-law

d)

None of these

21.

Choose the word which is not synonym for the given word. "Accumulation"

a)

Collection

b)

Conglomeration

c)

Assemblage

d)

Collagen

22.

Choose the word which is antonym for the given word. "Ancestor"

a)

Peer

b)

Seer

c)

Descendant

d)

Genetic

23.

Select correct analogy for Onset: Expiration ::

a)

Desires: aspiration

b)

Drama: scene

c)

Proposal: Final

d)

Tempo: Time

24.

Select correct analogy for - Shower: Inundation ::

a)

Inception: perception

b)

History: potent

c)

Imagine: sight

d)

Criticism: Vilification

25.

Choose the word which is not synonym for the given word. "Stingy"

a)

Amicable

b)

Penurious

c)

Parsimonious

d)

Frugal

26.

Which principle of OOP ensures that an object controls access to its own data?

a)

Abstraction

b)

Encapsulation

c)

Inheritance

d)

Polymorphism

e)

Modularity

27.

What is the output of calling a virtual function in a constructor?

a)

Calls the base class function

b)

Calls the derived class function

c)

Causes a compile error

d)

Calls nothing

e)

Crashes the program

28.

In dynamic dispatch, method resolution is based on:

a)

Compile-time type

b)

Run-time type

c)

Return type

d)

Method signature

e)

Object's address

29.

What is composition in OOP?

a)

Class-inheritance relation

b)

One class containing another

c)

Function overloading

d)

Object instantiation

e)

Data hiding

30.

Your application has a class with 15 public methods and 3 private variables. The class is very hard to test. What could improve it?

a)

Make all variables public

b)

Split it based on functionality

c)

Inherit it from a utility class

d)

Convert to interface

e)

Remove private methods

31.

A Vehicle class has subclasses like Bike, Car, and Truck. All inherit the method startEngine(). What is being reused here?

a)

Abstraction

b)

Polymorphism

c)

Inheritance

d)

Composition

e)

Overriding

32.

In a payment system, you use a base interface PaymentMethod and classes like CreditCard, UPI, NetBanking. Which OOP feature allows this?

a)

Abstraction

b)

Polymorphism

c)

Encapsulation

d)

Inheritance

e)

Delegation

33.

You have a method draw() in the base class Shape. Different subclasses (Circle, Rectangle) implement it differently. This is an example of:

a)

Inheritance

b)

Method overloading

c)

Static binding

d)

Runtime polymorphism

e)

Abstraction

34.

A class BankAccount exposes methods to deposit() and withdraw() but does not allow direct access to its balance attribute. This demonstrates:

a)

Inheritance

b)

Encapsulation

c)

Abstraction

d)

Overloading

e)

Composition

35.

You are designing a library system. You want to allow searching books by title, author, and ISBN. What OOP principle best fits this?

a)

Inheritance

b)

Abstraction

c)

Polymorphism

d)

Encapsulation

e)

Overloading

36.

What is a Foreign Key?

a)

A key used to access data from another table

b)

A key used to identify each record in a table uniquely

c)

A key that establishes a link between two tables

d)

A key that is automatically generated by the database system

e)

A key that store duplicate values

37.

Which Normal Form Eliminates Repeating Groups by Putting them into Separate Tables and Connecting them through Foreign Keys?

a)

First Normal Form (1NF)

b)

Second Normal Form (2NF)

c)

Third Normal Form (3NF)

d)

Boyce-Codd Normal Form (BCNF)

e)

Fourth Normal Form (4NF)

38.

What is the Role of GROUP BY in SQL?

a)

To sort query results in ascending order

b)

To filter rows based on a particular condition

c)

To perform aggregate functions on grouped data

d)

To join multiple tables together

e)

To insert grouped values into a new table

39.

Which Type of Join Returns every Row from both Tables, Joining them where Conditions are met and Filling in NULLs for Missing Matches?

a)

INNER JOIN

b)

LEFT JOIN

c)

RIGHT JOIN

d)

FULL OUTER JOIN

40.

What is “Normalization”?

a)

The process of organizing data to minimize redundancy and dependency

b)

The process of adding indexes to a database table

c)

The process of encrypting sensitive data in a database

d)

The process of backing up a database regularly

e)

The process of archiving old data

41.

What is the Role of the COMMIT Statement?

a)

To save all changes made during the transaction

b)

To discard all changes made during the transaction

c)

To roll back the transaction to its starting point

d)

To create a new transaction

e)

To lock the transaction for changes

42.

What is the Role of an Index?

a)

To store large binary objects (BLOBs)

b)

To enforce data integrity constraints

c)

To boost the speed of data retrieval operations

d)

To group related tables together

e)

To store temporary results

43.

What is a Schema in a Relational Database?

a)

A graphical representation of data relationships

b)

A collection of related tables

c)

A blueprint that defines the structure of the database

d)

A database query language

e)

A type of database key

44.

Which is not a Valid SQL Constraint?

a)

DEFAULT

b)

CHECK

c)

LIMIT

d)

UNIQUE

e)

PRIMARY

45.

Which keyword is used to combine the results of two SELECT statements and eliminate duplicates?

a)

UNION

b)

INTERSECT

c)

JOIN

d)

GROUP

e)

MERGE

46.

What is the best time complexity to search for an element in a sorted and rotated array?

a)

O(n)

b)

O(log n)

c)

O(1)

d)

O(n log n)

e)

O(n²)

47.

What is the maximum number of nodes in a binary tree of height h?

a)

2^h

b)

2^h – 1

c)

2^(h+1) – 1

d)

e)

log h

48.

Which condition must be satisfied for a binary tree to be complete?

a)

Every node has 2 children

b)

All leaves are at same depth

c)

All levels are filled except possibly last

d)

Only root has two children

49.

Which traversal ensures the shortest path in unweighted graphs?

a)

DFS

b)

BFS

c)

Dijkstra

d)

Topological

50.

In an undirected graph, the degree of a vertex is:

a)

Number of incoming edges

b)

Number of outgoing edges

c)

Total number of edges connected to it

d)

Number of loops

e)

Always equal for all nodes