wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Module 5 Revision

Total questions: 17

Worksheet time: 11mins

Name
Class
Date
1.

What is the name of the force that keeps an object floating?

a)

Weight

b)

Thrust force

c)

Buoyant force

d)

Normal force

2.

The buoyant force acts to which direction?

a)

Upwards

b)

Downwards

c)

Sideways

d)

Rotation

3.

Which principle explains that buoyancy force of a floating object is the same as the weight of water displaced?

a)

Archimedes' Principle

b)

Pascals' Principle

c)

Ohm's Law

d)

Bernoulli's Principle

4.

If an object is floating, the buoyant force is _______ the weight of the object

a)

greater than

b)

smaller than

c)

the same as

5.

If an object is sinking, the buoyant force is _______ the weight of the object

a)

greater than

b)

smaller than

c)

the same as

6.

If an object is moving upwards to the surface of the water, the buoyant force is _______ the weight of the object

a)

greater than

b)

smaller than

c)

the same as

7.

What is the unit of weight?

a)

Kilogram

b)

Newton

c)

Pascal

d)

Ampere

8.

If a 5 Newton object is floating, what is the buoyant force?

a)

4 Newton

b)

5 Newton

c)

6 Newton

d)

7 Newton

9.

Match the following

a)
1.

30 mm bar

b)
2.

40 mm bar

c)
3.

110 mm bar

d)
4.

DC motor, single shaft

10.

Which of the following is not the characteristic of a robot?

a)

Programmable

b)

Autonomous or semi-autonomous

c)

Interact with the surrounding with sensors or actuators

d)

Cannot be prgrammed

11.

Read the Arduino code below:

void green () {

digitalWrite (red, LOW);

digitalWrite (green, HIGH);

digitalWrite (yellow, LOW);

delay (5000);

What will happen when you run this code?

a)

The red LED will be turned on

b)

The green LED will be turned on

c)

The yellow LED will be turned on

d)

All LEDs will be turned on

12.

delay (10000);

What is the time this code represents?

a)

10000 seconds

b)

10 seconds

c)

100 seconds

d)

1000 seconds

13.

Match the following

a)
1.

LED

b)
2.

Arduino UNO

c)
3.

Resistor

d)
4.

Jumper wires

e)
5.

Breadboard

14.

digitalWrite (red,HIGH);

This code means that ______________

a)

The red LED will be turned off

b)

The red LED will be turned on

c)

The red LED will be blinking

15.

digitalWrite (red,LOW);

This code means that ______________

a)

The red LED will be turned off

b)

The red LED will be turned on

c)

The red LED will be blinking

16.

pinMode (red, OUTPUT);

What does this line means?

a)

The red LED is an input device

b)

The red LED is an output device

c)

The red LED is a sensor

17.

pinMode (red, OUTPUT);

In which function will you write this line?

a)

void loop ()

b)

void green()

c)

void setup()