6. GPIO High Impedance

Question.3

A resistor network is connected as shown below:
What will be the voltage across resistor R3?

Code:

void setup() {
 pinMode(3, OUTPUT);
 digitalWrite(3, HIGH);

 pinMode(6, INPUT);
 digitalWrite(6, LOW);
}

void loop() {
}

 

Select Answer