56. Arduino UART Functions

Question.4

What will be the output on the Serial Monitor when the following code is executed?

void setup() {
  Serial.begin(9600);
  Serial.print("Hello");
  Serial.print(" ");
  Serial.println("World");
}

void loop() {
}


 

Select Answer