Quiz - Arduino Challenge 1

Quiz - Arduino Challenge 1

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

BrainPOP Loops

BrainPOP Loops

8th Grade

10 Qs

JavaScript with CodeCombat

JavaScript with CodeCombat

7th - 8th Grade

12 Qs

Coding basics

Coding basics

6th Grade

10 Qs

Coding Vocabulary Words

Coding Vocabulary Words

8th Grade

12 Qs

Computer Programming Basics

Computer Programming Basics

8th Grade

11 Qs

CODING QUIZZ

CODING QUIZZ

8th Grade

13 Qs

Day#7

Day#7

1st Grade - University

12 Qs

Microbit lesson 2

Microbit lesson 2

6th 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?