Arduino Programming Questions

Arduino Programming Questions

11th Grade

40 Qs

quiz-placeholder

Similar activities

Fingerprints review

Fingerprints review

9th - 12th Grade

35 Qs

Homeostasis & Cells Review

Homeostasis & Cells Review

9th - 12th Grade

40 Qs

Forensics Unit 2

Forensics Unit 2

10th - 12th Grade

44 Qs

Fingerprint Characteristics

Fingerprint Characteristics

10th - 11th Grade

35 Qs

Finger Print Review

Finger Print Review

10th - 12th Grade

42 Qs

Feed Back Loops and Body Systems

Feed Back Loops and Body Systems

9th - 12th Grade

37 Qs

Fingerprint Classification

Fingerprint Classification

9th - 12th Grade

44 Qs

Fingerprints

Fingerprints

9th - 12th Grade

35 Qs

Arduino Programming Questions

Arduino Programming Questions

Assessment

Quiz

Science

11th Grade

Medium

Created by

Cheryl Shepherd-Adams

Used 2+ times

FREE Resource

40 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct function to set a pin as an output in Arduino?

pinMode(13, INPUT)

digitalWrite(13, HIGH)

pinMode(13, OUTPUT)

analogWrite(13, HIGH)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Why won’t the following "blink" code work?

The LED will not blink because there is no LOW state.

delay(1000); is too short.

The pin should be set to INPUT.

The function digitalWrite should be analogWrite.

3.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

What common mistake might prevent the built-in LED on pin 13 from blinking?

Forgetting to declare pinMode(13, OUTPUT); in setup().

Using delay(0); instead of delay(1000);

Writing digitalRead(13, HIGH); instead of digitalWrite(13, HIGH);

Using analogWrite(13, 255); instead of digitalWrite(13, HIGH);

4.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

If your LED stays on instead of blinking, what could be the problem?

The LED might be broken.

The code is missing digitalWrite(13, LOW); and a delay.

pinMode(13, OUTPUT); is not needed.

The delay time is too long.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if you write delay(-1000);?

The Arduino will blink the LED faster.

The delay function will be ignored.

The Arduino will enter an infinite loop.

The code will not compile.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Why won’t the following code fade an LED properly?

The loop should count down after reaching 255.

pinMode(9, OUTPUT); should be INPUT.

The delay is too long.

The pin should be 13, not 9.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of pins support analogWrite() for fading LEDs?

Digital pins

Only pin 13

PWM pins marked with ~ *

Any pin set to OUTPUT

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?