Using Predefined Functions isalpha() and isdigit() Create a program that will use the following predefined functions: isalpha(),isdigit() NOTE: The program will accept input for name and age. The...


Using Predefined Functions isalpha() and isdigit()



Create a program that will use the following predefined functions: isalpha(),isdigit()



NOTE:

The program will accept input for name and age.
The program will display a remark VALID when name contains letters only. Otherwise, the remark is INVALID.
The program will display a remark VALID when age contains numbers only. Otherwise, the remark is INVALID.


NOTE:

Your source code must display any of the given sample output below.
It means your source code should be flexible enough to meet any of the given sample output.
Your source code output must be identical to any of the given sample output.
It means you have to strictly follow what are the displayed text, labels, casing of characters in the sample output.





















Sample OUTPUT 1
Name: Naruto
Remark: VALID
Age: 20
Remark: VALID





















Sample OUTPUT 2
Name: Narut0
Remark: INVALID
Age: 20
Remark: VALID





















Sample OUTPUT 3
Name: Naruto
Remark: VALID
Age: 20.0
Remark: INVALID





















Sample OUTPUT 3
Name: Narut0
Remark: INVALID
Age: -20
Remark: INVALID



Jun 02, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions ยป

Submit New Assignment

Copy and Paste Your Assignment Here