Computer Science, asked by abhay6717, 1 year ago

Describe the isdigit( ) method

Answers

Answered by sheikhmujeeb8
0

Answer:

it is the digit which is commonly use to join sentence.

here is your answer hope it helps you.

Answered by letmeanswer12
0

The isdigit( ) method

Explanation:

The isDigit(int codePoint) Character class method usually decides whether or not the given character is a digit. In general, if its general category given by getType(codePoint) is DECIMAL DIGIT NUMBER, a character is considered to be a digit.

  • Syntax - public static boolean isDigit(int codePoint)  
  • Parameter - The above method requires only one parameter. The codePoint which is a Unicode character that needs to be tested.
  • Return Value - The isDigit(int codePoint) method returns a boolean value i.e. true, if the given(or specified) character is a digit. Otherwise, the method returns false.

Similar questions