Computer Applications

Which of the following functions checks whether a character is a blank or not?

  1. Character.isBlankSpace( )
  2. Character.isWhiteSpace( )
  3. Character.isEmptySpace( )
  4. Character.isNull( )

Java Library Classes

31 Likes

Answer

Character.isWhiteSpace( )

Reason — Character.isWhiteSpace( ) returns a boolean type value true if the given argument is a white space and otherwise, it returns false.

Answered By

16 Likes


Related Questions