PGI module

PGI module

12th Grade

9 Qs

quiz-placeholder

Similar activities

Audio Review

Audio Review

9th - 12th Grade

10 Qs

AC and DC current

AC and DC current

11th - 12th Grade

10 Qs

TDR3M1 Test #2 Review

TDR3M1 Test #2 Review

11th - 12th Grade

12 Qs

Unit 6 Microcontrollers Intro 2022

Unit 6 Microcontrollers Intro 2022

11th Grade - University

14 Qs

Arduino Quiz 1: Basics

Arduino Quiz 1: Basics

9th - 12th Grade

12 Qs

autonomous vehicle key words quiz

autonomous vehicle key words quiz

12th Grade

9 Qs

Arduino coding (1)

Arduino coding (1)

9th - 12th Grade

4 Qs

Year 9: Embellishment Homework 3

Year 9: Embellishment Homework 3

10th - 12th Grade

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