Question: Java: What does the following program do? What is its purpose / functionality? It does something very specific; describe what it is analyzing. public int

Java:

What does the following program do? What is its purpose / functionality? It does something very specific; describe what it is analyzing.

public int countU( String str )

{

int maxLength = str.length();

int countU = 0;

int asciiCode;

for(int i = 0; i < maxLength; i++) {

asciiCode = (int)str.charAt(i);

if( asciiCode >= 65 && asciiCode <= 90 ) {

countU++;

}

}

return countU;

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!