Arduino 2025

Arduino 2025

6th - 8th Grade

7 Qs

quiz-placeholder

Similar activities

mBlock

mBlock

7th Grade

11 Qs

Arduino basics

Arduino basics

7th Grade - University

7 Qs

Recapitulare ESP32/Arduino

Recapitulare ESP32/Arduino

8th Grade

10 Qs

ABC of Arduino Quiz 4

ABC of Arduino Quiz 4

2nd - 8th Grade

10 Qs

How Computers are different from Human Brain?

How Computers are different from Human Brain?

8th Grade

10 Qs

10 . Automatic Street Light

10 . Automatic Street Light

6th - 8th Grade

10 Qs

Lesson 11 Starter

Lesson 11 Starter

8th Grade

11 Qs

MP 1

MP 1

KG - University

10 Qs

Arduino 2025

Arduino 2025

Assessment

Quiz

Computers

6th - 8th Grade

Easy

Created by

Hanif Ahmed

Used 10+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which Arduino function is used to write a HIGH or LOW value to a pin?

digitalRead()

analogRead()

digitalWrite()

analogWrite()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

digitalRead()

pinMode()

digialWrite()

setup()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

const

int

volatile

bool

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

analogRead()

analogWrite()

digitalRead()

delay()

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

for-loop

void loop()

interrupt

delay

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

Serial.begin()

Serial.println()

Serial.printLine()

Serial.close()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the coding principle "DRY"

Don't read yearbooks

Debug, Retry, Yell

Desperately removing yellow

Don't repeat yourself