wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Revision for grade12- week 1 &2

Total questions: 15

Worksheet time: 17mins

Name
Class
Date
1.

Can you name part number 1

a)

USB jack

b)

microconroller

c)

power socket

d)

microprocessor

2.

Can you name part number 2

a)

Analogue pin

b)

LED pin

c)

digital pin

d)

GND pin

3.

Can you name part number 3

a)

Power Jack

b)

reset button

c)

micro controller

d)

USB jack

4.

Can you name part number 4

a)

Leds

b)

Power jack

c)

Power support

d)

reset button

5.

Which function can run for infinite time?

a)

setup function

b)

loop function

6.

What will be the out put of this code

int A=6.1;

int B= 9.4;

int Result;

setup(){

Result= A+B;

Serial.print(Result);

}

a)

15.5

b)

15

c)

57.34

d)

error

7.

what is the type of the following statement

y= C+F;

a)

Compound operator

b)

Arithmetic operator

c)

Rational operator

d)

Complex operator

8.

Can you name the different types of operator inside this code ( Choose 2 answers)

a)

Compound operator

b)

Arithmetic operator

c)

Rational operator

d)

Boolean operator

9.

Can you name the different types of operator inside this code

a)

Compound operator

b)

Arithmetic operator

c)

Rational operator

d)

Boolean operator

10.

which signal have infinite number of possibilities

a)

Digital signal

b)

Analogue signal

11.

If the Led consider as an output how choose the correct code to make the led show it's output ( Choose 2 answers):

a)

digitalWrite(on#,HIGH);

b)

digitalRead(on#);

c)

AnalogRead(on#);

d)

AnalogWrite(on#,value);

12.

If we use a potentiometer to read voltage we can write the code as the following:

a)

digitalWrite(on#,HIGH);

b)

digitalRead(on#);

c)

AnalogRead(on#);

d)

AnalogWrite(on#,value);

13.

The buzzer makes the sound, so it's code could be write as

a)

digitalWrite(on#,HIGH);

b)

digitalRead(on#);

c)

AnalogRead(on#);

d)

AnalogWrite(on#,value);

14.

In for loop what dose this code mean

brightness-=5

a)

increment brightness by 5

b)

decrese brightness by 5

c)

start brightness from 5

d)

end brightness from 5

15.

in this code what do we call

brightness >=0

a)

test

b)

initialize

c)

increment

d)

decrement