Q-1-: What language is a typical Arduino code based on?
Correct
Incorrect
Question 2 of 15
2. Question
Q-2-: Can you run an Arduino code in Raspberry Pi or any other microcontroller or embedded system?
Correct
Incorrect
Question 3 of 15
3. Question
Q-3-: Is it possible to write code for the Arduino in any other programming language?
Correct
Incorrect
Question 4 of 15
4. Question
Q-4-: Can external generic C/C++ libraries be imported to the Arduino IDE and used in the code?
Correct
Incorrect
Question 5 of 15
5. Question
Q-5-: Arduino Codes are referred to as ________ in the Arduino IDE.
Correct
Incorrect
Question 6 of 15
6. Question
Q-6-: Which software is used to upload the Arduino Sketches to the board?
Correct
Incorrect
Question 7 of 15
7. Question
Q-7-: What is the output of the following code
void setup() {
Serial.begin(9600);
}
void loop() {
int a=92;
int b=101;
int c=a&b;
Serial.println(c);
}
Correct
Incorrect
Question 8 of 15
8. Question
Q-8-: Is there a difference between the = and the == operators?
Correct
Incorrect
Question 9 of 15
9. Question
Q-9-: How many times the following loop will run?
int pin1=10;
void setup() {
Serial.begin(9600);
pinMode(pin1,INPUT);
}
void loop() {
for(int i=0;i<10;i–) {
if(digitalRead(pin1)==1) {
Serial.println(“HELLO”);
}
}
}
Correct
Incorrect
Question 10 of 15
10. Question
Q-10-: How many times does the setup() function run on every startup of the Arduino System?
Correct
Incorrect
Question 11 of 15
11. Question
Q-11-: How many errors are in the below given code:
void Setup() {
pinMode(‘A0’,OUTPUT);
analogwrite(100,’A0’);
}
void loop() {
//Do Nothing
}
Correct
Incorrect
Question 12 of 15
12. Question
Q-12-: What do we need to do if we want to run the setup() function in an infinite loop?
Correct
Incorrect
Question 13 of 15
13. Question
Q-13-: Can a programmer not use the loop function at all in a code?
Correct
Incorrect
Question 14 of 15
14. Question
Q-14-: What type of signal does the analogWrite() function output?
Correct
Incorrect
Question 15 of 15
15. Question
Q-15-: How many RX-TX pairs of pins are present in the Arduino Mega?
Correct
Incorrect
Report Content
Block Member?
Please confirm you want to block this member.
You will no longer be able to:
See blocked member's posts
Mention this member in posts
Invite this member to groups
Message this member
Add this member as a connection
Please note: This action will also remove this member from your connections and send a report to the site admin. Please allow a few minutes for this process to complete.