5. Arduino GPIO Voltage and Current

Question.2

What will be printed on the Serial monitor?

void setup() { 
  pinMode(3, INPUT); 
}

void loop() {
  int reads = digitalRead(3);
  Serial.println(reads);
}

Select Answer