Ask Question

Given a variable word that has been assigned a string value, write a string expression that parentheses the value of word. so, if word contains "sadly", the value of the expression would be the string " (sadly) "

+4
Answers (1)
  1. 20 May, 22:37
    0
    Given a variable word that has been assigned a string value, write a string expression that parentheses the value of word. so, if word contains "sadly", the value of the expression would be the string " (sadly) "

    The string expression for the above is like this:String word = new String ("sadly"); System. out. print (" (" + word + ") ");
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Given a variable word that has been assigned a string value, write a string expression that parentheses the value of word. so, if word ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers