specifications1 readnumberofentriesrarr this


Specifications

1. readNumberOfEntries→ This function will ask the user for a value greater than or equal to two. The function will keep asking values as long as the user provides a value less than two. For each incorrect value the function will print (using alert) the message: 

"Error: Number must be greater than or equal to 2"

The function will end once a correct value is provided (the function returns this value).

2. isSorted→ This function will verify whether a set of values are sorted (in increasing order). The function will read a set of values from the user and will return true if the set of values are sorted and false otherwise. You must use the readNumberOfEntries function described above in order to read the number of entries the user will provide. The actual entries are read by the isSorted function.

3. isPalindrome→ This function will verify whether a set of values represent a palindrome. We define a palindrome as a set of numbers that when read from left to right and from right to left, present the same set of values. For example, the following are considered palindromes:

4. Example1:             10    20    105.   

6. Example2:             10    10

The following are not considered palindromes:

                Example1:             10    20    8

                Example2:             10    20

You must use the readNumberOfEntries function described above in order to read the number of entries the user will provide. The values the user provides must be read by this function and they should be stored in an array. Once in the array, your code should determine whether the values represent a palindrome.

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: specifications1 readnumberofentriesrarr this
Reference No:- TGS0208716

Expected delivery within 24 Hours