60. Arduino UART Buffer

Question.4

How much time will it consume to transmit the following string?

void setup() {
  Serial.begin(9600); 
  Serial.write("EWskills is Awesome!!!\n"); 
}

void loop() {

}


 

Select Answer