Advertisements
Advertisements
Question
Given that:
m = "reason".length();
What will be the value of m?
Options
66
5
4
3
MCQ
Advertisements
Solution
6
Explanation:
The length() method in Java counts the total number of characters present in a given string, including letters, spaces, and punctuation symbols. Since the word reason contains exactly six letters (r-e-a-s-o-n), the method returns 6, which is then assigned to the integer variable m.
shaalaa.com
Is there an error in this question or solution?
