String greeting = "Welcome Home";Using the above String, create the String method to convert the greeting String to all uppercase. Likewise, create the String method to convert the greeting String to all lowercase.

What will be an ideal response?

To convert to uppercase:
greeting = greeting.toUpperCase();

To convert to lowercase:
greeting = greeting.toLowerCase();

Computer Science & Information Technology

You might also like to view...

A(n) ________ chart is best for displaying trends over time

Fill in the blank(s) with correct word

Computer Science & Information Technology

Technical ________ are full texts focused on a specific technical topic

Fill in the blank(s) with correct word

Computer Science & Information Technology