Topic 3:  Displaying Text on the Serial Monitor

Topic 3: Displaying Text on the Serial Monitor

5th - 6th Grade

8 Qs

quiz-placeholder

Similar activities

RBS6. User Controlled LED

RBS6. User Controlled LED

5th Grade

7 Qs

11. Light following Robot

11. Light following Robot

1st - 10th Grade

7 Qs

Computers

Computers

5th Grade

10 Qs

Micro:bits

Micro:bits

5th Grade

5 Qs

Pembuatan Program Mikrokontroler

Pembuatan Program Mikrokontroler

1st - 10th Grade

13 Qs

Повторение с фоторезистором

Повторение с фоторезистором

6th Grade

11 Qs

EXERCÍCIO -5- PROGRAMAÇÃO E ROBÓTICA - DURVAL 2025

EXERCÍCIO -5- PROGRAMAÇÃO E ROBÓTICA - DURVAL 2025

1st Grade - University

12 Qs

Arduino Lesson 1

Arduino Lesson 1

6th - 8th Grade

11 Qs

 Topic 3:  Displaying Text on the Serial Monitor

Topic 3: Displaying Text on the Serial Monitor

Assessment

Quiz

Other, Computers

5th - 6th Grade

Medium

Created by

Michelle Fruelda

Used 13+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What part of the Arduino IDE code window allows you to both send messages from your computer to your Arduino board and also to receive messages from the Arduino?

Sketch Writing Area

Serial Monitor

Menu Bar

Status Bar

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which icon represents the serial monitor?

Media Image
Media Image
Media Image
Media Image

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which among the following is the best way to use the serial monitor?

You must connect your Arduino board and PC via USB cable.

You must connect your Arduino board and PC using laptop charger.

You must connect your Arduino board and PC using jumper wire.

You must connect your Arduino board and PC using a mobile phone charger.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following DOES NOT describe how serial monitor works?

It receives data from Arduino and display data on screen.

It sends data (command) from PC to Arduino.

In order to use serial monitor, we must connect Arduino and PC via USB cable.

It can receive data and display it, but cannot send data to Arduino.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How will you describe the result of the statement Serial.println ("Hello"); on the serial monitor which is written under the void setup?

The text Hello will appear on the serial monitor page repeatedly.

The text Hello will appear on the serial monitor page twice.

The text Hello will appear on the serial monitor page once only.

The text Hello will not appear on the serial monitor page.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How will you describe the result of the statement Serial.println ("Hello"); on the serial monitor which is written under the void loop?

The text Hello will appear on the serial monitor page repeatedly.

The text Hello will appear on the serial monitor page twice.

The text Hello will appear on the serial monitor page once only.

The text Hello will not appear on the serial monitor page.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Daphne encountered an error in uploading her codes. What do you think is missing in her codes?

There is no opening curly bracket right after the void setup.

There is no semicolon ; in statement in line number 2.

Closing curly bracket in line 3 must be removed.

Wrong spelling of command print line.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Vince wants the texts "Good Morning" to display on the serial monitor repeatedly. What must he do in his sketch?

Remove Serial.begin(9600); in the void setup and transfer it in the void loop.

Remove Serial.println("Good Morning"); in the void setup and transfer it in the void loop.

Transfer both Serial.begin(9600); and Serial.println("Good Morning"); in the void loop.

His sketch is correct and no need to edit the codes.