Menu
×
×
Correct!
Exercise:Add the correct data type for the following variables:
int myNum = 9;
float myFloatNum = 8.99f;
char myLetter = 'A';
boolean myBool = false;
String myText = "Hello World";
Not CorrectClick here to try again. Correct!Next ❯myNum = 9; myFloatNum = 8.99f; myLetter = 'A'; myBool = false; myText = "Hello World"; |