subject

Using the program Eclipse IDE for Java Developers, Version: Neon.2 Release (4.6.2)Problem Description: Some websites impose certain rules for passwords. Suppose password rules are as follows: 1. A password must have at least eight characters. 2. A password consists of only letters and digits. 3. A password must contain at least two digits. Write a program with class name CheckPassword that prompts the user to enter a password and displays Valid password if the rules are followed or Invalid password otherwise. Create three methods (headers given below) to check the three rules. public static boolean AtLeast8(String p) public static boolean LetterOrDigit(String p) public static boolean AtLeast2Digits(String p)For example, method AtLeast8 will return true if there are at least eight characters in the password otherwise it will return false. Here are four sample runs:Sample 1: Enter your password: My password18 Invalid passwordSample 2: Enter your password: pass18 Invalid password Sample3: Enter your password: password Invalid password Sample4: Enter your password: password18 Valid passwordYou can use the following steps in your code: System. out. print("Enter your password: ");1. Store the user entry in String variable named password using nextLine() method.2. Create three boolean variables isAtLeast8, isLetterDigit, and isAtLeast2Digits and assign the output of the corresponding methods to these boolean variables. For example, boolean isAtLeast8 = AtLeast8(password);3. If each boolean variable is true then display Valid password otherwise display Invalid password. //Method AtLeast84. Create a method AtLeast8 outside the main method with the header provided in the problem description. The password is passed to the string variable p in this method. Inside the method do the following. i) If the length of p is less than 8 then return false, otherwise return true. //Method LetterOrDigit5. Create a method LetterOrDigit outside the main method with the header provided in the problem description. The password is passed to the string variable p in this method. Inside the method do the followings. i) Create a loop that checks whether each character in p is a letter or a digit. To check this use the in-built methods Character. isLetterOrDigit(p. charAt(index)). The method isLetterOrDigit returns true if p. charAt(index) is a letter or digit. See Chapter 4 Table 4.6ii) If a character is not found to be a letter or digit then return false inside the loop, otherwise return true outside the loop. //Method AtLeast2Digits6. Create a method AtLeast2Digits outside the main method with the header provided in the problem description. The password is passed to the string variable p in this method. Inside the method do the followings. i) Create an integer variable count and assign zero to it. ii) Create a loop that counts the number of digits in p. The in-built method Character. isDigit(p. charAt(index)) returns true if p. charAt(index) is a digit. Increase count by one when a digit is found. iii) If the count is at least 2 then return true inside the loop, otherwise return false outside the loop.

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 20:30
Write a program that reads the file, then displays the average number of steps taken for each month. (the data is from a year that was not a leap year, so february has 28 days.) your program needs to use at least 3 functions not counting main and display the information in a neat well formatted fashion.
Answers: 3
question
Computers and Technology, 23.06.2019 19:00
This question involves a class named textfile that represents a text file. public class textfile { private string filename; private string filename; private arraylist words; // constructors not shown // postcondition: returns the number of bytes in this file public int filesize() { } // precondition: 0 < = index < words.size() // postcondition: removes numwords words from the words arraylist beginning at // index. public void deletewords(int index, int numwords) { } // precondition: 0 < = index < = words.size() // postcondition: adds elements from newwords array to words arraylist beginning // at index. pub lic voidaddwords(int index, string[] newwords) { } // other methods not shown } complete the filesize() method. the filesize() is computed in bytes. in a text file, each character in each word counts as one byte. in addition, there is a space in between each word in the words arraylist, and each of those spaces also counts as one byte. for example, suppose the words arraylist stores the following words: { mary had a little lamb; its fleece was white as snow. } the filesize() method would compute 4 + 3 + 1 + 6 + 5 + 4 + 6 + 3 + 5 + 2 + 5 as the sum of the lengths of each string in the arraylist. the value returned would be this sum plus 10, because there would also be 10 spaces in between the 11 words. complete the filesize() method below: // postcondition: returns the number of bytes in this file public int filesize() { }
Answers: 1
question
Computers and Technology, 24.06.2019 13:00
Why should you evaluate trends when thinking about a career path?
Answers: 1
question
Computers and Technology, 24.06.2019 16:00
Read these lines from beowulf.often scyld scefing seized mead-benches from enemytroops, from many a clan, he terrified warriors, even thoughfirst he was found a waif, best explains why the author includes this information in theexposition? a. to emphasize that a hero must learn to be fierceb. to remember the famous story of a popular heroc. to express sadness about losing the old heroesd. to see whether people still respect the old heroes
Answers: 1
You know the right answer?
Using the program Eclipse IDE for Java Developers, Version: Neon.2 Release (4.6.2)Problem Descriptio...
Questions
question
Mathematics, 27.09.2019 12:00
question
Mathematics, 27.09.2019 12:00
question
Computers and Technology, 27.09.2019 12:00
question
Mathematics, 27.09.2019 12:00
Questions on the website: 13722363