Employ jtable for an applet that displays the results of


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 - more here: https://mathbits.com/MathBits/Java/arrays/Bubble.htm

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.

Solution Preview :

Prepared by a verified Expert
JAVA Programming: Employ jtable for an applet that displays the results of
Reference No:- TGS01694470

Now Priced at $40 (50% Discount)

Recommended (98%)

Rated (4.3/5)