Arduino Review

Arduino Review

8th Grade

18 Qs

quiz-placeholder

Similar activities

викторина по arduino uno

викторина по arduino uno

6th - 8th Grade

15 Qs

Arduino Básico para 8°

Arduino Básico para 8°

8th Grade

15 Qs

APORTE 1P IIQ DE ROBÓTICA 8VO

APORTE 1P IIQ DE ROBÓTICA 8VO

8th Grade

14 Qs

Arduino

Arduino

7th - 9th Grade

15 Qs

Revision G8

Revision G8

8th Grade

13 Qs

Arduino Week 6 Homework

Arduino Week 6 Homework

8th Grade

17 Qs

Arduino Midterm Review 2

Arduino Midterm Review 2

8th - 10th Grade

15 Qs

Pembuatan Program Mikrokontroler

Pembuatan Program Mikrokontroler

1st - 10th Grade

13 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?