MCQs
Total Questions : 10
Answer: Option B. -> General Purpose Input Output Pins
Answer: Option B. -> Proprietary
Answer: Option D. -> Sheilds
Answer: Option D. -> Leonardo
Answer: Option B. -> Integrated Development Environment
Answer: Option B. -> Sketch
Answer: Option B. -> setup()
Answer: Option B. -> Makes comments
Answer: Option C. -> LilyPad
Question 10. What is wrong with the following/*Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain.*/int led = 13;void setup() { pinMode(led, INPUT); }void loop() { digitalWrite(led, HIGH); delay(1000);digitalWrite(led, LOW); delay(1000);}
Answer: Option B. -> Void