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 [पृष्ठ २८९]