Arduino Review

Arduino Review

8th Grade

18 Qs

quiz-placeholder

Similar activities

Arduino Kod Okur Yazarlığı 1

Arduino Kod Okur Yazarlığı 1

5th Grade - University

20 Qs

Introduction to Java(BlueJ)-Grade 8

Introduction to Java(BlueJ)-Grade 8

8th Grade

20 Qs

Arduino

Arduino

6th - 8th Grade

20 Qs

Arduino

Arduino

7th - 9th Grade

15 Qs

Arduino Week 6 Homework

Arduino Week 6 Homework

8th Grade

17 Qs

Pembuatan Program Mikrokontroler

Pembuatan Program Mikrokontroler

1st - 10th Grade

13 Qs

Y8 Flowol

Y8 Flowol

7th - 8th Grade

17 Qs

Arduino Quize 2

Arduino Quize 2

8th Grade

20 Qs

Arduino Review

Arduino Review

Assessment

Quiz

Computers

8th Grade

Medium

Created by

Anna Milewska

Used 74+ times

FREE Resource

18 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

How long is the LED on?

digitalWrite(13, HIGH); 
 
delay(1000);   
digitalWrite(13, LOW); 
 
delay(1000); 
1000 seconds
100 seconds
1 second
100 milliseconds

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How long is the LED off?

digitalWrite(13, HIGH); 
 
 delay(1000);   
digitalWrite(13, LOW); 
 
delay(1000); 
1000 seconds
100 seconds
1 second
100 milliseconds

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which pin is the jumper wire connected to?

digitalWrite(13, HIGH); 
 
delay(1000);   
digitalWrite(13, LOW); 
 
 delay(1000); 
13
12
100
digital pin

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement do you change to alter the time?
void setup()
{  
pinMode(13, OUTPUT);

}
void loop()
{  
digitalWrite(13, HIGH); 
  delay(1000);   
digitalWrite(13, LOW); 
  delay(1000); 
}
delay
void loop
digitalWrite
pinMode

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which means ON?
void setup()
{  
pinMode(13, OUTPUT);

}
void loop()
{  
digitalWrite(13, HIGH); 
  delay(1000);   
digitalWrite(13, LOW); 
  delay(1000); 
}
OUTPUT
HIGH
LOW
delay

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which means Off?
void setup()
{  
pinMode(13, OUTPUT);

}
void loop()
{  
digitalWrite(13, HIGH); 
  delay(1000);   
digitalWrite(13, LOW); 
  delay(1000); 
}
OUTPUT
HIGH
LOW
delay

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which means keep going forever?
void setup()
{  
pinMode(13, OUTPUT);

}
void loop()
{  
digitalWrite(13, HIGH); 
  delay(1000);   
digitalWrite(13, LOW); 
  delay(1000); 
}
OUTPUT
void setup
void loop
digitalWrite

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?