Write an iterative method to print a string backwards.

What will be an ideal response?


```
public static void iterativeBackwards(String s)
{
for(int i = s.length()-1; i >= 0; i--)
System.out.print(s.charAt(i));
}

```

Computer Science & Information Technology

You might also like to view...

What is displayed by the following statement?

```System.out.println("Java is neat".replaceAll("is", "AAA"));``` a. JavaAAAneat b. JavaAAA neat c. Java AAA neat d. Java AAAneat

Computer Science & Information Technology

Windows Explorer can be used to find Base files stored on a hard drive

Indicate whether the statement is true or false

Computer Science & Information Technology

________ graphics are designer-quality visual representations of your information that you can create by choosing from the many different layouts to communicate your message or ideas effectively

Fill in the blank(s) with correct word

Computer Science & Information Technology

A(n) ________ is a navigation element that, when clicked, will take you to another location, such as a webpage or a document

A) browser B) URL C) hyperlink D) email address

Computer Science & Information Technology