Arduino Basic Programming - SW Flashcards

1
Q

What is the default analog reference voltage of your Arduino Uno

A

5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Arduino need additional programmer or burner hardware required for programming board

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What command would you use to tell the Arduino that there is an assign variable in port 9

a. 9;
b. 9;
c. char pinOut;
d. digitalWrite(9,LOW)
e. pinMode(9, OUTPUT)
f. int pinout

A

digitalWrite(9, LOW)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which of these can an Arduino NOT used for

a. All of these
b. Controlling servos
c. Displaying analog inputs
d. Building hybrid humanoid robot

A

d. Building hybrid humanoid robots

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How many analog ports does Arduino Uno have

A

6

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Software written using Arduino are called

A

sketch

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

This function in Arduino pauses the program for the amount of time (in milliseconds)as specified as parameter

A

delay

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the two arduino’s main program structures/.

A

setup and loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

This function in Arduino is used to write a HIGH or LOW value to a digital pin

A

digitalWrite

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

It is a function in Arduino that will execute repeatedly

A

void loop()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

One of the basic structure of any Arduino program that is called once when the program starts

A

void setup()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

This function configures the specified pin to behave either as an input or an output

A

pinMode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Arduino uses a 5V to 6.6V of power supply

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The program/code written by your Arduino IDE are stored in what format?

A

.ino

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

When using the delay function in Arduino, one can perform other task like reading another input pin before the delay time expires

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly