Question.2
What will be printed on the Serial Monitor when the following code is executed on a 12-bit ADC?
void setup() { Serial.begin(9600); } void loop() { int sensorValue = analogRead(A0); Serial.println(sensorValue); while (1); }
Select Answer
1023
511
2047
255