wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

GRADE 8 - ICT Assessment - 03.01.2021

Total questions: 20

Worksheet time: 15mins

Name
Class
Date
1.

Computers store data, like information, files, images , sound and video in the form of _____________ .

a)

Files

b)

Folders

c)

Names

d)

Numbers

2.

Each digit in a binary number is called a (a)   .

3.

__________ are the standard units of storage in a computer.

a)

Bit

b)

Bytes

c)

ROM

d)

Hard disk

4.

A Terabyte is __________________.

a)

1024 Megabytes

b)

1024 Kilobytes

c)

1024 Gigabytes

d)

1024 bytes

5.

Hexadecimal number system has ____ as it base value.

a)

2

b)

10

c)

8

d)

16

6.

In Hexadecimal number system, the value of E is ________.

a)

10

b)

15

c)

14

d)

13

7.

Convert (8)10 to binary number system

a)

(1001)2

b)

(1010)2

c)

(1110)2

d)

(1000)2

8.

The size of RAM and hard disk of your computer are expressed in __________.

a)

Kilo bytes

b)

Mega bytes

c)

Giga bytes

d)

All of the above

9.

Convert (33)8 to decimal number system.

a)

(29)10

b)

(24)10

c)

(33)10

d)

(27)10

10.

Convert (101011)2 into decimal number system.

a)

(43)10

b)

(45)10

c)

(34)10

d)

(54)10

11.

(a)   statement executes a specified block of code a specified number of times, and keep track of value of he variable.

12.

The ___________________ is used to make BASIC - 256 read an expression aloud, through the speakers of the computers.

a)

While loop

b)

For statement

c)

If statement

d)

Say statement

13.

Complete the below syntax:

While __________

statement(s)

end while

a)

Loop

b)

Statement

c)

Doing

d)

Condition

14.

A (a)   is used to repeat a block of code at various places in program.

15.

__________ help in understanding the flow of the program and debugging the program.

a)

Say statement

b)

For statement

c)

If statement

d)

Comment statement

16.

The _________ statement causes the execution to jump to the subroutine defined by the label.

a)

return

b)

gosub

c)

execute

d)

end

17.

right (string, length) returns

a)

a string of length character starting from the left

b)

the length of the string

c)

a lower case string

d)

a string of length characters starting from the right.

18.

Find the output of the below program.

a$= "Superman"

print mid (a$,3,4)

a)

Super

b)

SUPERMAN

c)

perm

d)

man

19.

Pick the advantage(s) of using subroutines in the program.

a)

Reduces the chances of typing errors.

b)

Program becomes difficult to read.

c)

More than one programmer works on the program.

d)

Program is difficult to design.

20.

Pick the output of the below program

i=8

while i<10

Print "Hello World"

i=i+1

end while

a)

HELLO WORLD

b)

hello world

hello world

hello world

c)

Hello World

Hello World

d)

hello world