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 in a MessageBox.
LANGUAGE: Visual Basic
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 in a MessageBox.
SOLUTION:
MessageBox.Show("Today's Word-Of-The-Day is: " + word)