wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Ardino Uno lesson

Total questions: 20

Worksheet time: 30mins

Name
Class
Date
1.

What is the Meaning of the below Process " INPUT "

a)

An input is data that a computer receives

b)

You can think of the processor as the Brains of the computer - the faster the processor, the more quickly the computer can think.

c)

how a computer displays or communicates information.

2.

What is the Meaning of the below Process " OUTPUT "

a)

how a computer displays or communicates information.

b)

You can think of the processor as the Brains of the computer - the faster the processor, the more quickly the computer can think.

c)

An input is data that a computer receives

3.

What is the meaning of the process " PROCESS "

a)

You can think of the processor as the Brains of the computer - the faster the processor, the more quickly the computer can think.

b)

how a computer displays or communicates information.

c)

An input is data that a computer receives

4.

Which one is a Input ?

a)

b)

c)

d)

5.

Which is the OUTPUT ?

a)

b)

c)

d)

All of above

6.

Which one is Arduino Uno ?

a)

b)

c)

7.

which one is analog signal ?

a)

b)

8.

Which one is Digital Signal ?

a)

b)

9.

What is LED ?

a)

Light-Enter Diode

b)

Light-emitting Diode

c)

Light-Emitting Device

10.

is LED a Input ?

a)

TRUE

b)

FALSE

11.

int ledPin = 7 ;

is this a correct statement ?

a)

Correct

b)

Wrong

12.

void setup(){

digitalWrite(ledPin1,HIGH);

delay(1000);

digitalWrite(ledPin1,LOW);

delay(1000);

}

What does this coding means ?

a)

led will stay on

b)

led will turn on for 1 second and turn off for 1 second

c)

led will turn on for 1000 second and turn off for 1000 second

d)

led will not light up

13.

void setup(){

PinMode(led,HIGH);

}

Which is Wrong ?

a)

PinMode

b)

HIGH

c)

Void Setup

d)

led

14.

digitalWrite(led,HIGH);

delay(500);

digitalWrite(led,LOW);

delay(500);

How to make the led to blink slowly ?

a)

increase the delay to 2000 seconds

b)

decrease the delay to 100 seconds

c)

add more digitelWrite

15.

Buzzer is a _________ ?

a)

INPUT

b)

OUTPUT

16.

Which Digital Pin is Used for the Buzzer ?

a)

8

b)

7

c)

6

d)

9

17.

What is RGB stand For ?

a)

red, green and blue

b)

red , gray and black

c)

rose , green and brown

d)

none of the answers

18.

is this statement TRUE about RGB ?

In a common cathode RGB LED, all three LEDs share a positive connection (cathode). In a common anode RGB LED, the three LEDs share a negative connection (anode).

a)

FALSE

b)

TRUE

19.

How does this coding works ?

a)

1st - RED

2nd - GREEN

3rd - Blue

b)

1st - RED

2nd - BLUE

3rd - RED

c)

1st - BLUE

2nd - GREEN

3rd - RED

d)

1st - GREEN

2nd - RED

3rd - Blue

20.

Fill it to make led blink .

a)

Both HIGH .

b)

Both LOW .

c)

1st - HIGH

2nd - LOW