Solved

What Will Be Displayed After the Following Code Has Been

Question 26

Multiple Choice

What will be displayed after the following code has been executed?
Boolean matches;
String str1 = "The cow jumped over the moon.";
String str2 = "moon";
Matches = str1.endsWith(str2) ;
System.out.println(matches) ;


A) true
B) moon
C) false
D) The cow

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions