Quiz - Arduino Challenge 1

Quiz - Arduino Challenge 1

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

break цикілі

break цикілі

8th Grade

10 Qs

Kodu- grade 6 test

Kodu- grade 6 test

6th Grade

10 Qs

brain storming and mind maps

brain storming and mind maps

6th Grade

10 Qs

Word 2016 Basics - Saving Document, Page Layout, Header & Foot

Word 2016 Basics - Saving Document, Page Layout, Header & Foot

7th Grade

10 Qs

HARDWARE AND SOFTWARE

HARDWARE AND SOFTWARE

2nd - 10th Grade

10 Qs

Lekcja14 7-8

Lekcja14 7-8

7th - 8th Grade

13 Qs

Revision Quiz 2 - Information Technology

Revision Quiz 2 - Information Technology

7th - 8th Grade

10 Qs

Arduino

Arduino

7th - 12th Grade

10 Qs

Quiz - Arduino Challenge 1

Quiz - Arduino Challenge 1

Assessment

Quiz

Computers

6th - 8th Grade

Practice Problem

Hard

Created by

JML- TARQUINO

Used 9+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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?