Advertisements
Advertisements
Question
Write a statement to perform the following task on a string:
Check if the second character of a string str is in uppercase.
Code Writing
Solution
String st = "COMPUTER";
char c = str.charAt(1); // first char is in position 0
if (Character.isUpperCase(c))
System.out.println("Character is in upper case");
else
System.out.println("Character is in NOT in upper case");
shaalaa.com
Is there an error in this question or solution?
Chapter 4: String Handling - EXERCISES [Page 289]