III. Assume that a String identifier sentence references the String below
sentence = “This is my first real homework.”;
(5 points)
What is the value of each expression below?
sentence.length()
sentence.charAt(3)
sentence.toLowerCase()
sentence.toUpperCase()
1
Expert's answer
2017-03-10T20:08:05-0500
public class Solution { public static void main(String[] args) { String sentence = "This is my first real homework.";
Comments
Leave a comment