Question: Given that s is a String, what does the following loop do ? for ( int j = s . length ( ) ; j

Given that s is a String, what does the following loop do?
for (int j=s.length();j>0;j--
System.out.print(s.charAt(j-1));
it prints s out backwards
it prints s out forwards
it prints s out backwards after skipping the last character
it prints $ out backwards but does not print the 0th character
 Given that s is a String, what does the following loop

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!