Question: The code for getting the ALL CAPS version of a String is.toUpperCase(). For example, the following code below would print HELLO WORLD. String str hello
The code for getting the ALL CAPS version of a String is.toUpperCase(). For example, the following code below would print "HELLO WORLD". String str "hello world": System.out.println str.toUpperCase() X Write a method named yell that turns text into yelling text by making it All-Caps. For example, yell("hello") should return "HELLO" (return it, don't print it). Here is the starter-code
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
