Q.1.
What is the use of the Vin pin present on some Arduino Boards?
Q.2.
What is the correct execution process of an Arduino code?
Q.3.
What is the microcontroller used in Arduino UNO?
Q.4.
Which board is the first to use a microcontroller within the build USB?
Q.5.
Which Arduino Board contains an onboard joystick?
Q.6.
What is the function of the IOREF pin on the Arduino UNO?
Q.7.
Which processor supports the Arduino Zero?
Q.8.
Which software is used to upload the Arduino Sketches to the board?
Q.9.
What is the use for the 2 serial pins on the Arduino Diecimila?
Q.10.
Which Arduino Boards use the Atmega2560?
Q.11.
What is the operating voltage of Atmega328?
Q.12.
Which Arduino Boards use the Atmega32U4?
Q.13.
Is the Arduino code an Object-Oriented programming language or a Procedural programming language?
Q.14.
What is the difference between an IDE and a compiler?
Q.15.
What will be the output of the following Arduino code? #define Xvoid setup(){ X= Serial.begin(9600); Serial.print(X); } void loop(){ //Do nothing… }
Q.16.
Where does the Arduino IDE search if it needs to find out the Name of a type of Arduino Board?
Q.17.
How many times does the setup() function run on every startup of the Arduino System?
Q.18.
Which of the following statements is not true when dealing with the Firmata library?
Q.19.
What is the output of “pinif “pinis sent “where 1 isand 0 is 0V? int pin1 = 12;int pin2 = 11;void setup() { pinMode(pinOUTPUT); pinMode(pinINPUT); Serial.begin(9600);}void loop() { if(digitalRead(pin2)=={ digitalWrite(pin1,LOW); } else if(digitalRead(pin2)=={ digitalWrite(pin1,HIGH); }}
Q.20.
What is the objective of the code given below if it is executed on the Arduino Uno? #include<EEPROM.h>int pin=13;void setup() { pinMode(pin,OUTPUT); Serial.begin(9600);}void loop() { for(int i=0;i<EEPROM.length();i++) { EEPROM.write(i, 1); } digitalWrite(pin,HIGH); exit(0);}