Complete the code to print the number 10 to the serial monitor.
Serial.[1](10);
Use Serial.print() to print without moving to a new line.
Complete the code to print the text "Hello" and then move to a new line.
Serial.[1]("Hello");
Serial.println() prints the text and moves the cursor to the next line.
Fix the error in the code to print the variable count followed by a new line.
int count = 5; Serial.[1](count);
Use Serial.println() to print the variable and move to a new line.
Fill both blanks to print the text "Value:" and then print the variable val on the next line.
int val = 42; Serial.[1]("Value: "); Serial.[2](val);
Use println to print "Value:" and move to a new line, then print to print val on the next line (if you want it on the same line, reverse the order).
Fill all three blanks to print the variable temp followed by " C" and then move to a new line.
float temp = 23.5; Serial.[1](temp); Serial.[2](" C"); Serial.[3]();
Print the temperature and the unit without new lines, then use println() with no arguments to move to the next line.
