Question.2
What is printed on the Serial monitor? ( after executing the following code )
void setup() { Serial.begin(115200); } void loop() { Serial.println("EW is"); Serial.println("COOL!"); while(1); }
Select Answer
EW isCOOL!
EW isCool!
EW is COOL!