Kizspy | Question: 12
(Choose 1 answer)
What is the time period of the output signal of the program given below?
int pin=10;void setup() {
1234567.0 8.
9.
Serial.begin(9600);
}
pinMode(pin, OUTPUT);
void loop() {
digitalWrite(pin, HIGH);
delay(10);
10.
digitalWrite(pin, LOW);
delay(10);
11.}
A. 20 Microseconds
B. 100 Milliseconds
C. 10 Milliseconds
D. 20 Milliseconds
FUOVER