Assume that word is a String variable. Write a statement to display the message “Today’s Word-Of-The-Day is: “followed by the value of word on a line by itself on standard output.

LANGUAGE: JAVA

CHALLENGE:

Assume that word is a String variable. Write a statement to display the message “Today’s Word-Of-The-Day is: “followed by the value of word on a line by itself on standard output.

SOLUTION:


System.out.println("Today's Word-Of-The-Day is: " + word);