ICSE Class 10 Computer Applications Question 15 of 30

Solved 2025 Specimen Paper ICSE Class 10 Computer Applications — Question 15

Back to all questions
15
Question

Question 1(xv)

The method to convert a lowercase character to uppercase is:

  1. String.toUpperCase( )
  2. Character.isUppercase( char )
  3. Character.toUpperCase( char )
  4. toUpperCase ( )
Answer

Character.toUpperCase( char )

Reason — The method Character.toUpperCase(char) is used to convert a single lowercase character to its uppercase equivalent. It belongs to the Character class in Java.