Question: Using Java on eclipse. ASSIGNMENT 1A Assignment 1A tests your knowledge of Recursion (Chapter 18. Design a program/project/driver class (the program/project/driver class file should be

Using Java on eclipse.

Using Java on eclipse. ASSIGNMENT 1A Assignment 1A tests your knowledge of

ASSIGNMENT 1A Assignment 1A tests your knowledge of Recursion (Chapter 18. Design a program/project/driver class (the program/project/driver class file should be called YourNameAssignment1A; replace Your Name with your actual name), with the following exact methods in this order: Method Description Methodi A recursive method that computes the Nth element in this series: Method1(x, N)=1+x++x+x+...+xM where N is an integral number between 0 and 1000 and x is a floating-point number. The method should return N+1 if x is 1. For example, Method1(1,0) is 1, Method1(1,1) is 2, Method1(1,2) is 3, Method1(2,1) is 3 Method1(2,2) is 7. The method should receive the floating-point number x and integral number N as parameters and return the Nth value in the series for that x and N. Method2 A recursive method that finds the number of occurrences of a specific letter in a word (any case). The method should receive the character for the Letter and the string with the Word as parameter and return the number of occurrences of the Letter in Word. For example, Method2('a',"cat") is 1, Method2('a', "Azalea") is 3, Method2('a', "CALAMATA") is 4, Method2('a', "biotechnologies") is 0. main The main method should call the 2 methods as follows: Ask the user for a floating-point number x and print the first 21 values from the Method1 series (call Method1 for x and all the Numbers between 0 and 20) and output them in a table format, with first column showing the value for the Number and the second column showing the corresponding value computed from Method1(x, Number) call. For example, if the user enters 2 for the floating-point number X, the output should be: METHOD1(2, N) 1 3 2 - (and so on until 20) Ask the user for Word, and use Method2 to compute the number of occurrences of each Letter in the alphabet (from 'a' to 'Z') in the Word (counting both lower and upper case of the Letter) and output it in a table format with first column showing the letter and the second column showing the corresponding number of occurrences computed from the Method2(Letter, Word) call) For example, if the user enters "cat" for the word, the output should be: Letter METHOD2(Letter, "cat") N B 1 ... (and so on until z) Create a Microsoft Word document called Your Name Assignment1A-Screenshots.docx (replace YourName with your actual name) that contains screenshots of the editor window showing the entire JAVA source code and the entire output. If the entire class JAVA source code or the output does not fit in one screenshot or the screenshots cannot be easily read, create multiple screenshots and add them to the same document. Submit YourNameAssignment1A.java JAVA source code file and YourName-Assignment1A-Screenshots.docx Microsoft Word screenshots document on eCampus under the Assignment1A. Do not archive the files (no ZIP, no RAR, etc) or submit other file formats. Review the files in your eCampus submission confirmation window

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!