Question: Given that s is a String, what does the following loop do? String r = ; int i = s.length()-1; while ( i >= 0

Given that s is a String, what does the following loop do?

String r = "";

int i = s.length()-1;

while ( i >= 0 )

{

r += s.charAt(index);

i --;

}

System.out.println( r );

a.) it prints s out backwards

b.) it prints s out backwards but does not print the 0th character

c.) it reverses s and changes it

d.) it generates a new reverse string for s, but keep s with initial information.

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!