Aruino 2025

Aruino 2025

Assessment

Flashcard

Computers

6th - 8th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

7 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which Arduino function is used to write a HIGH or LOW value to a pin? Options: digitalRead(), analogRead(), digitalWrite(), analogWrite()

Back

digitalWrite()

2.

FLASHCARD QUESTION

Front

This function is used to set a pin as being either an INPUT or OUTPUT

Back

pinMode()

3.

FLASHCARD QUESTION

Front

This keyword is used to force the CPU to read a value from memory (RAM)

Back

volatile

4.

FLASHCARD QUESTION

Front

This function is used to pause the execution of code for a specified period of time in milliseconds

Back

delay()

5.

FLASHCARD QUESTION

Front

This coding technique is used to pause the execution of code to respond to an external event, such as a button press

Back

interrupt

6.

FLASHCARD QUESTION

Front

This function is used to print values to the Serial Monitor, making it very useful for inspecting values and debugging code.

Back

Serial.println()

7.

FLASHCARD QUESTION

Front

What does the coding principle "DRY" mean?

Back

Don't repeat yourself