x= Suppose you are building a program for teaching kids’ math. Write a java program the does the following: 1. Ask the user if he/she wants to sign-up a. If yes continue to step 2 b. If no Display the message “Thank you, Have a nice Day 2. Ask the user to enter a username. 3. Ask the user to enter a password with at least 8 characters long 4. Write a method with the following header: public static Boolean checkPassword (String s) that checks if the password is 8 characters long. If the password is more than 8 characters long return true otherwise return false. 5. Invoke the method to check the password entered by the user. 6. If true display “your password has been saved” if false ask the user to enter a password again until he/she enters a correct password. 7. Display an addition statement of two random generated numbers for 5 times 8. Each time check the user answer if correct display the message “correct answer” 9. else display “wrong answer, the correct answer is…” 10.At the end of the test display message “well done! See next time” Show transcribed image text x= Suppose you are building a program for teaching kids’ math. Write a java program the does the following: 1. Ask the user if he/she wants to sign-up a. If yes continue to step 2 b. If no Display the message “Thank you, Have a nice Day 2. Ask the user to enter a username. 3. Ask the user to enter a password with at least 8 characters long 4. Write a method with the following header: public static Boolean checkPassword (String s) that checks if the password is 8 characters long. If the password is more than 8 characters long return true otherwise return false. 5. Invoke the method to check the password entered by the user. 6. If true display “your password has been saved” if false ask the user to enter a password again until he/she enters a correct password. 7. Display an addition statement of two random generated numbers for 5 times 8. Each time check the user answer if correct display the message “correct answer” 9. else display “wrong answer, the correct answer is…” 10.At the end of the test display message “well done! See next time”
Expert Answer
Answer to x= Suppose you are building a program for teaching kids’ math. Write a java program the does the following: 1. Ask the u…