Determine whether the following statements are true or false. An instance variab
ID: 3560173 • Letter: D
Question
Determine whether the following statements are true or false. An instance variable can be accessed in a static method. An array is an object in Java. Instance methods can be called through the class name. If a local variable has the same name as an instance variable, the local variable will be used in the method. You cannot change the length of an array once it has been created. Determine the value of the following method calls. String str = "World Wide Web"; str.substring(6,10) str.indexOf("W") str.substring(11) str.charAt(7) str.substring(0, 6) What will be the result of each method call? String s5 = "coffee"; String s6 = "COFFEE"; s5.equals(s6) s5.equalsIgnoreCase(s6) s5.equals(s6.toLowerCase()) s6.compareTo(s5) s5.compareTo(s6.toLowerCase())Explanation / Answer
1)FAlse.Static methods can not directly access any instance variables or methods. But they can access them by using their object reference.
2)True.An object is a class instance or an array.
3)False
4)False.Instance Variable Would be used.
5)True.
6)WIDE
7)0
8)WEB
9)I
10)WORLD
11)False
12)True
13)True
14)Less tha 0
15)0
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.