3. Arduino GPIO Programming

Question.9

Harry built the following circuit. Which of the following statements are true about the circuit?

const int button1Pin = 4;
const int button2Pin = 5;

void setup() {
  Serial.begin(115200);
  pinMode(button1Pin, INPUT);
  pinMode(button2Pin, INPUT);
}

void loop() {
}

Select Multiple Options