CJCoding With Joseph

Password Length Checker

Create a class PasswordChecker with an IsValid(string password) method that returns true when the password is at least 8 characters long and false otherwise. Do not write a Main method.

For the password secret12 (8 characters) the program prints:
True

Expected Output:

True
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.