Advertisements
Advertisements
प्रश्न
Write a statement to perform the following task on a string:
Check if the second character of a string str is in uppercase.
कोड लेखन
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 4: String Handling - EXERCISES [पृष्ठ २८९]