Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Physics & Ict week : 7 grades

Total questions: 25

Worksheet time: 50mins

Name
Class
Date
1.

Which one of the following shows only units of length?

a)

l, Å, kg

b)

m, m3, s

c)

Å, m, km

d)

dam, g, m2

2.

The density of gold is 19.3 g/cm3.

What is the mass of 10 cm3 gold?

a)

19.3 g

b)

0.193 g

c)

1.93 g

d)

193 g

3.

How many seconds are equivalent to

5 min?

a)

30 s

b)

60 s

c)

120 s

d)

300 s

4.

What is the mass of a copper cube of side 2 cm?

(Take dcopper = 9 g/cm3)

a)

0.18 g

b)

72 g

c)

180 g

d)

36 g

5.

How many minutes are there between 05:30 and 21:15 ?

a)

715

b)

945

c)

1595

d)

900

6.

What is the volume of 60 g wood?

(dwood = 0.6 g/cm3)

a)

10 cm3

b)

36 cm3

c)

100 cm3

d)

360 cm3

7.

What is the relationship between the volume and density of objects which have equal masses?

a)

The object with the greatest volume has the

greatest density.

b)

The object which has the lowest volume has the

lowest density.

c)

The object which has the greatest volume has

the lowest density.

d)

None of the above.

8.

What is the unit of area?

a)

m

b)

m2

c)

m3

d)

l

9.

2 ml is equal to:

a)

2 m3

b)

20 m3

c)

2 cm3

d)

20 cm3

10.

A regular container of base area

100 cm2 and height 5 cm is half-filled with water.

What is the volume of the water?

a)

250ml

b)

500ml

c)

100ml

d)

200 ml

11.

Which of the following measures mass?

a)

Spring balance

b)

Thermometer

c)

Equal-arm balance

d)

Meter stick

12.

Which of the following must be known in order to calculate the density of a cube?


I. The length of one side

II. Its mass

III. Its surface area

a)

I only

b)

II only

c)

I and III

d)

I and II

13.

Which of the following is recognised as matter?

a)

Heat

b)

Sound

c)

Air

d)

Light

14.

How many possible values are there for a boolean variable?

a)

1

b)

2

c)

3

d)

4

15.

Which of the following is not a comparison operator?

a)

>

b)

!=

c)

<=

d)

?

16.

Which of the following is not a logical operator in Python?

a)

because

b)

and

c)

or

d)

not

17.

What does the following program print?

a = "ict"

b = 4

c = a * b

print(type(c))

a)

<class 'int'>

b)

The program crashes and doesn’t print anything

c)

<class 'str'>

d)

<class 'float'>

18.

What type is the following variable?

x = "Hi there"

a)

boolean

b)

integer

c)

string

d)

float

19.

What does the following Python program print?

x = 16 % 3

print(x)

a)

1

b)

2

c)

3

d)

4

20.

Suppose you have a variable defined

a = "10". What is the variable type of a?

a)

number

b)

int

c)

str

d)

float

21.

What kind of data does a float variable contain?

a)

words

b)

A float is not a Python variable type

c)

Numbers that can have decimal components

d)

Whole numbers

22.

What will print to the screen when the following program is run?

number = 15

greater_than_zero = number >10

print(type(number))

a)

<class 'int'>

b)

5

c)

15

d)

<class 'bool'>

23.

What does this Python expression evaluate to?

100 != 100

a)

'false'

b)

'true'

c)

false

d)

true

24.

How would you round the number held in the variable pi to 3.14?

pi = 3.14159265

a)

round(2, pi)

b)

round(pi,2)

c)

round(pi)

d)

round(2)

25.

Which of the following programs prints ten lines?

a)

for i in range(10):

print(“hi”)

b)

for i=1 to 10:

print(“hi”)

c)

for i in 1-10:

print(“hi”)

d)

for i from 0 to 9:

print(“hi”)