Write a code fragment that prints the characters stored in a String object called str backward.
What will be an ideal response?
```
for (int index = str.length()-1; index >= 0; index--)
System.out.print(str.charAt(index));
System.out.println();
```
Computer Science & Information Technology
You might also like to view...
____________________ are decoy systems designed to lure potential attackers away from critical systems.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
The ________ cell in the OpenOffice Calc application is the cell that is selected
A) current B) active C) block D) display
Computer Science & Information Technology
A PowerPoint ________ is a set of unified design elements
Fill in the blank(s) with correct word
Computer Science & Information Technology
The ________ distribution is used most often to predict demand for a product or service
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology