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 + ")");