Quiz - Arduino Challenge 1

Quiz - Arduino Challenge 1

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Arduino IDE Software Introduction

Arduino IDE Software Introduction

7th Grade

10 Qs

Arduino Quiz

Arduino Quiz

8th Grade

9 Qs

mBlock

mBlock

7th Grade

11 Qs

Humanoid Robots- Test 3A

Humanoid Robots- Test 3A

6th Grade

10 Qs

Day#10

Day#10

1st Grade - University

14 Qs

Arduino - P-uur - deel 4

Arduino - P-uur - deel 4

6th - 12th Grade

14 Qs

Electronic Components for Arduino Uno

Electronic Components for Arduino Uno

7th Grade

10 Qs

Lesson 11 Starter

Lesson 11 Starter

8th Grade

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