1. ADC Programming- Arduino

What will be printed on the serial monitor?

void setup() {
  Serial.begin(9600);
  analogReference(DEFAULT);
  delay(1000);
}

void loop() {
  int sensorValue = analogRead(A0);
  Serial.println(sensorValue);
  delay(500);
}

Select Answer