Write methods that take a word input by the user and then-


1. Write methods that take a word input by the user and then:

a. splits the word into a unicode character array

b. determines if the input word is a palindrome - the same frontwards and backwards.

c. sorts the unicode character array according to their unicode decimal values.

d. generates statistics based on the max, min, and average of the unicode value array.

To accomplish items b and c, consider using a nested loop so that an array can be compared to itself. For item c, if an array's value in the outer loop is greater that that of the inner loop, the values are swapped. This is a bubble sort

2. Employ JTable for an applet that displays the results of the above tasks. Hint: you may want to have single array accumulate rows from from the tasks. Think of how you can handle varying dimensions for output to be a single applet. Or, alternatively, have the user select which output to display in a different sized JTable.

3. Incorporate a Java collection covered in lecture 9 into your final project

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: Write methods that take a word input by the user and then-
Reference No:- TGS01042173

Expected delivery within 24 Hours