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

7&8 Bluetooth and Voice control Led

7&8 Bluetooth and Voice control Led

6th - 8th Grade

10 Qs

Arduino Basics

Arduino Basics

6th Grade

10 Qs

7. Mobile Control LED

7. Mobile Control LED

1st - 10th Grade

7 Qs

Mec1 Arduino and Interactive

Mec1 Arduino and Interactive

1st - 12th Grade

10 Qs

Arduino: 1 четверть

Arduino: 1 четверть

6th Grade

12 Qs

6 . RGB Color Switcher

6 . RGB Color Switcher

6th - 8th Grade

10 Qs

Основы Arduino. RGB-светодиод

Основы Arduino. RGB-светодиод

6th Grade

12 Qs

Arduino_2

Arduino_2

3rd Grade - University

10 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.