Question.3
What is the value of the variable val1? ( after executing the following code )
val1
void setup() { Serial.begin(115200); Serial.println("EW99.99EW 140"); } void loop() { if (Serial.available() > 0) { float val1 = Serial.parseFloat(); } while (1); }
Select Answer
99.99
99.00
140.00
140
99.9914