56. Arduino UART Functions

Question.3

What is printed on the Serial monitor?  ( after executing the following code )

void setup() {
Serial.begin(115200);
}
void loop() {
 Serial.write(69);
 Serial.write(87);
 while(1);
}


 

Select Answer