PGI module

PGI module

12th Grade

9 Qs

quiz-placeholder

Similar activities

DesEng Practice 3

DesEng Practice 3

12th Grade

10 Qs

Fusion 360: Joints

Fusion 360: Joints

9th - 12th Grade

7 Qs

test ARDUINO 01

test ARDUINO 01

12th Grade

10 Qs

Motors

Motors

12th Grade

8 Qs

Y8 Sewing quiz

Y8 Sewing quiz

11th - 12th Grade

10 Qs

Arduino Intro Quiz

Arduino Intro Quiz

9th - 12th Grade

8 Qs

Sistem Kawalan

Sistem Kawalan

10th Grade - University

12 Qs

Kuiz RBT

Kuiz RBT

10th - 12th Grade

6 Qs

PGI module

PGI module

Assessment

Quiz

Design

12th Grade

Medium

Created by

Chia Ming

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

Which labels corresponding to the highlighted components of Arduino UNO circuit board?

1. Power connector

2. ATMega328

3. Speaker

1. Power connector

2. Microphone

3. Digital I/O pins

1. USB port

2. Power connector

3. ATMega328

1. USB port

2. Inductor

3. Clock oscillator

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

Which pins are used to send and receive digital values for Arduino UNO microcontroller?

Pins 0 - 13

pins 3, 4, 6, 9, 10, 11

pins 1 - 4

pins A0 - A5

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Arduino UNO has voltage out pins that provide _____

0V

5V

9V

3.3V and 5V

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

Which labels correspond to the highlighted components of the Arduino UNO circuit board?

1. Analog pins

2. Power pins

3. Digital I/O pins

1. Power pins

2. Analog pins

3. Digital I/O pins

1. Digital I/O pins

2. Power pins

3. Analog pins

1. Power pins

2. Digital I/O pins

3. Analog pins

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

All digital pins on an Arduino board can be used for both ____ & ____.

on; off

PWM; communication

low; high

input; output

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

The void setup ( ) functions runs _____

after the loop ( ) function

repeatedly, after it is powered ON

once, after it is powered ON

when command RUN executed.

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Why would PinMode (3, input); result in an error message in the console and message bar?

Ans: The correct syntax is ____

PINMODE (3, input);

pinMode (3, input);

PinMode (3, input)

pinmode (3, input)

8.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the correct syntax for the delay( ) function that will hold for 5 seconds?

delay (50000);

delay (5000);

delay (500);

delay (5);

9.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

When is the only time that digitalWrite ( ) function can work?

When the pin is configured to an input.

A pin can be both input & output at same time, so configuration doesn't matter.

When the pin is configured to an output.

When the pin is in floating state.