No student devices needed. Know more
20 questions
Which if the following consider as input sensor?
Button
Ultrasonic Distance
LED
Temperature
How many analog pin on Arduino board?
5
6
13
14
To control the current through a circuit we use _________
Resistor
Transistor
Ultrasonic Distance Sensor
Diode
The following line of code, means ________
pinMode(12, OUTPUT);
Make the device in pin 13 set to ON state.
Set the device in pin 12 as input.
Set the device in pin 12 as output.
Make the device in pin 12 set to Off state.
How many digital pin on Arduino board?
5
6
13
14
Which of the following consider as output devices?
Button
LED
Humidity
Motor
The result of the following line Code is______
print(7%3);
0
1
2
3
To pause a system for 2 seconds in Arduino, we use ________ line code.
delay(2);
delay(20);
delay(200);
delay(2000);
To use Serial monitor you have to write the following code
Serial.begin(9600);
True
False
What is the output of the snippet code ?
3
4
5
6
How many pin in RGB Led ?
2
3
4
5
Which one is the fastest Led blincking ?
delay(500);
delay(1000);
delay(1500);
delay(2000);
How to define a Led connected to pin 13 in Arduino?
Pinmode(13,INPUT);
pinMode(13,INPUT);
Pinmode(13,OUTPUT);
pinMode(13,OUTPUT);
Which oneof the following is a user defined function?
loop();
setup();
calculate();
random();
Which function runs only one time?
loop();
setup();
calculate();
random();
What printed when you run the following code?
Serial.print(5>3);
True
False
0
1
What is the output for the following code?
int x=5;
int y=3;
x+=y;
Serial.print(x+y);
6
8
10
11
Arduino code contains two functions by default
True
False
A device that can measure the distance to objects
Ultrasonic Sensor
RGB LED
Potintiometer
Temperature Sensor
All of these are input devices Except ______________
Ultrasonic Sensor
Temp Sensor
Potentiometer
LED
Explore all questions with a free account