use file ReverseTest.java
Write a method named printReverse that accepts a String as an argument and prints the characters in the opposite order. For example,
printReverse (“Uncle Foobar”); should print rabooF elcnU
If the empty string is passed as an argument, the method should produce no output. Be sure to write a main method that convincingly demonstrates your program in action. Do not use the reverse method of the StringBuilder or StringBuffer class!Attachments