What will be printed after the following code is executed?
```
String str = "abc456";
int m = 0;
while ( m < 6 )
{
if (Character.isLetter(str.charAt(m)))
System.out.print(
Character.toUpperCase(str.charAt(m)));
m++;
}
```
a. abc456 b. ABC456 c. ABC d. 456
c. ABC
Computer Science & Information Technology
You might also like to view...
Identification badges and smart keys are examples of ________ objects that users carry to identify themselves and that allow them access to a computer system or computer facility
Fill in the blank(s) with correct word
Computer Science & Information Technology
Experiment with the Web form example presesnted in Figures ...
What will be an ideal response?
Computer Science & Information Technology