0% found this document useful (0 votes)
8 views1 page

Python Programs and Testing Techniques

The document outlines several programming tasks in Python, including checking for odd or even numbers, validating mobile number formats, creating a password strength checker, simulating user registration, implementing a login system, and validating date formats. Each task includes instructions for generating test cases, such as Black Box, White Box, and manual testing. The focus is on ensuring functional verification and robustness of the programs through various testing methodologies.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

Python Programs and Testing Techniques

The document outlines several programming tasks in Python, including checking for odd or even numbers, validating mobile number formats, creating a password strength checker, simulating user registration, implementing a login system, and validating date formats. Each task includes instructions for generating test cases, such as Black Box, White Box, and manual testing. The focus is on ensuring functional verification and robustness of the programs through various testing methodologies.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

1. Write a Python program to check whether a given number is odd or even.

Generate
Black Box test cases.
2. Develop a Python script to validate a mobile number format. Write boundary test
cases for various lengths.
3. Create a password strength checker program. Apply White Box Testing to cover
all paths in logic.
4. Simulate user registration: accept name, age, email. Write test cases manually for
functional verification.
5. Write a login system with user authentication. Perform both Positive and Negative
Testing.
6. Implement a Python program to validate date format (DD/MM/YYYY). Validate
using both manual and automated test cases.

You might also like