wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Demo - techitout 3.0

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

The main goal of database normalization is to —

a)

Reduce storage space

b)

Eliminate redundancy and dependency

c)

Speed up query execution

d)

Create indexes

2.

Which of the following is not part of the ACID properties of a transaction?

a)

Atomicity

b)

Consistency

c)

Indexing

d)

Durability

3.

What happens if you don’t declare a destructor virtual in a base class when deleting a derived object through a base pointer?

a)

Both destructors are called

b)

Only base destructor is called → risk of resource leak

c)

Only derived destructor is called

d)

No destructor is called at all

4.

Which inheritance type is represented by:

class A {};

class B: public A {};

class C: public B {};

a)

Multiple

b)

Hierarchical

c)

Multilevel

d)

Hybrid

5.

Which traversal of a binary tree prints nodes in sorted order?

a)

Pre-order

b)

Post-order

c)

In-order

d)

Level-order

6.

Which of the following data structures is non-linear ?

a)

Array

b)

Linked List

c)

Stack

d)

Tree

7.

Which club is the best ?

a)

GDG

b)

GFG

c)

ACM

d)

CSI

8.

When is Tech-it-out 3.0 ?

a)

15th October

b)

14th November

c)

12th November

d)

13th october

9.

Which access specifier makes class members accessible only inside the same class?

a)

public

b)

protected

c)

private

d)

global

10.

Which of the following is true about constructors in C++ ?

a)

They can return values

b)

They have the same name as the class

c)

They must be declared static

d)

They must always take parameters