58. Serial Data Manupulation

Question.5

What will be the output on the Serial Monitor when the following code is executed if the user inputs the string "EW1234"?

void setup() {
	Serial.begin(9600);
}
void loop() {
	if (Serial.available() > 0) {
		int number = Serial.parseInt();
		Serial.print("Parsed number: ");
		Serial.println(number);
		while(1);
	}
}

Select Answer