Font size
WorksheetsArduino Keywords
Total questions: 10
Worksheet time: 5mins
Signals obtained from Sensors can be used with arduino as
Input signal with both Digital Pins and Analog input pins
as input ONLY with Analog input pins
as input Only with Digital Pins
None of the above.
Actuators like LEDs,Motors or Buzzers cannot be attached to........
Analog input pins
Digital Pins
PWM Pins
GND Pins
The value of PWM Pins can be varied from
0 and 1
any value between 0 to 255
None
I don't know.
LEDs can only glow in forwards Bias connection?
True
False
Rx-Tx pins can be used for (More then one correct)
wired communication
wireless communication with Bluetooth.
wireless communication with with Wi-Fi
for communication and control
in void setup() the code written in this function
will Run only once in the beginning
need to run again and again, when Arduino is powered.
None
Both
in void loop(),code written in this section
Run again and again
Run only once
none
Both
the meaning of the below code means
int Red_Led = 12;
void setup()
{
pinMode(Red_Led,OUTPUT);
}
on port number 12, motor is connected as input
any actuator is connected to pin 10
pin Number 12 is output pin and Led is connected to it.
All of the above
to dedicate any pin as output or input, we write the portion of code in......
void loop()
void setup()
both
None
which of the following keyword is correct, for output at pin number 10
pinMode( 12, INPUT);
PINMODE(12,OUTPUT);
pinMode(10,output);
pinMode(10,OUTPUT);
