Write a method called isAlpha that accepts a character parameter and returns true if that character is either an uppercase or lowercase alphabetic letter.

What will be an ideal response?


```
public boolean isAlpha(char ch)
{
return ( (ch >= 'a' && ch <= 'z') ||
(ch >= 'A' && ch <= 'Z') );
}

```

Computer Science & Information Technology

You might also like to view...

A(n) ___________________ loop will repeat an unlimited number of times.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Two approaches to creating responsive sizes are fluid grid design and jQuery Mobile.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The Summary tab of the Properties dialog box contains some categories of properties not found in the Document Information Panel

Indicate whether the statement is true or false

Computer Science & Information Technology

____ is the process of connecting the brain with a computer, such as implanting electrodes directly into the brain to restore lost functionality to or facilitate the communications of severely disabled individuals.

A. Telebrainage B. BCI C. VeriChip’ing D. CIT

Computer Science & Information Technology