Q.1.
digitalWrite(13,LOW)digitalWrite(13,LOW)digitalWrite(13,LOW) means?
Q.2.
Which means ON?void setup() { pinMode(OUTPUT); }void loop() { digitalWrite(HIGH); delay(1000); digitalWrite(LOW); delay(1000); }
Q.3.
Which statement do you change to alter the time?void setup() { pinMode(OUTPUT); }void loop() { digitalWrite(HIGH); delay(1000); digitalWrite(LOW); delay(1000); }
Q.4.
Which pin is the jumper wire connected to?digitalWrite(HIGH); delay(1000); digitalWrite(LOW); delay(1000);
Q.5.
How long is the LED on?digitalWrite(HIGH); delay(1000); digitalWrite(LOW); delay(1000);
Q.6.
A forward slash is used for
Q.7.
An output is something that happens when a circuit is in use. An example of an output is:
Q.8.
WRITE DOWN THE TYPES OF CODING
Q.9.
You can use ..........() statements in a sketch to repeat instructions, as long as (..........) a given condition is true.