Quiz - Arduino Challenge 1

Quiz - Arduino Challenge 1

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Arduino_2

Arduino_2

3rd Grade - University

10 Qs

Arduino and IoT

Arduino and IoT

KG - University

12 Qs

Quiz: PlayBoard y C++

Quiz: PlayBoard y C++

8th Grade

10 Qs

Tinkercad Circuits Quiz

Tinkercad Circuits Quiz

7th Grade

14 Qs

Codebots and Python Coding

Codebots and Python Coding

7th - 9th Grade

11 Qs

6 . RGB Color Switcher

6 . RGB Color Switcher

6th - 8th Grade

10 Qs

Robotics/Coding Pop Quiz

Robotics/Coding Pop Quiz

4th Grade - Professional Development

10 Qs

Module 5: Snake Charmer vocabulary review

Module 5: Snake Charmer vocabulary review

7th Grade

10 Qs

Quiz - Arduino Challenge 1

Quiz - Arduino Challenge 1

Assessment

Quiz

Computers

6th - 8th Grade

Hard

Created by

JML- TARQUINO

Used 9+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Media Image

What does IDE stand for?

Internal Deep Escape

In Deep Environment

Integrated Development Environment

I Don't Elaborate

2.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Which command or function is called repetitively over and over again as long as the Arduino has power.

setup()

loop()

instruction()

repeat()

3.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Which command is called when a sketch starts?. It is used to initialize variables, pin modes, start using libraries, etc. It will only run once, after each power up or reset of the Arduino board.

delay()

input()

loop()

setup()

4.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

What character is used to end a statement in a C++ Code?

!

,

;

-

5.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Which character is used in Arduino software to tell when the function section begins and ends?. (Without them, the software is lost and unable to compile your code)

( )

[ ]

{ }

< >

6.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

This is used only in function declarations. It indicates that the function is expected to return no information to the function from which it was called.

bool

float

void

char

7.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Which command is used to pause the program for the amount of time (in miliiseconds) specified as parameter?. (There are 1000 milliseconds in a second.)

stop( )

delay( )

regress( )

start( )

8.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

Media Image

Find the error in the block of code shown:

The function is missing a parenthesis

Inside the function, the instructions should not end with semicolons (;)

Inside the function, One of the variables is misspelled

There are no errors in the code

9.

FILL IN THE BLANK QUESTION

1 min • 10 pts

Media Image

In the code shown, For each time the loop function is executed, How much time is the Red Led on?