Solved

What Will Be the Value of Matches After the Following

Question 59

Multiple Choice

What will be the value of matches after the following code is executed?
Boolean matches;
String[] productCodes = {"456HI345", "3456hj"};
Matches = productCodes[0].regionMatches(true, 1,
ProductCodes[1], 2, 3) ;


A) 56H
B) 56h
C) true
D) False

Correct Answer:

verifed

Verified

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

Related Questions