1. ESP32 GPIO Practices and Cautions

What will be printed on the serial monitor? 

Note:- nothing is connected to ESP32

void setup() {
}

void loop() {
  int buttonState = digitalRead(2);
  Serial.println(buttonState);
}

Select Answer