Sail E0 Webinar
Question
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);}
Options:
A .  All the code
B .  Void
C .  High and Low
D .  Low and High
Answer: Option B





Submit Your Solution Below and Earn Points !

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers