Advertisements
Advertisements
प्रश्न
Describe the purpose of the following function with its syntax:
toUpperCase()
कोड लेखन
उत्तर
This function returns the supplied argument as an upper-case character or string. The value remains the same whether the character is already uppercase or is not a letter.
Example 1:
char c = Character.toUpperCase('a');
System.out.println(c);
Output: 'A'
Example2:
Strings = hello123";
s = s.toUpperCase(); System.out.println(s);
Output: HELLO123
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 4: String Handling - EXERCISES [पृष्ठ २८९]