Python_Institute
PCEP-30-02 · Question #318
PCEP-30-02 Question #318: Real Exam Question with Answer & Explanation
Sign in or unlock PCEP-30-02 to reveal the answer and full explanation for question #318. The question stem and answer options stay visible for context.
Question
The following is a program to validate customer numbers.
customer_number = input('Enter the employee number (dd-ddd-dddd): ')
parts = customer_number.split('-')
valid = False
if len(parts) == 3:
if parts[0].isdigit() and parts[1].isdigit() and parts[2].isdigit():
valid = True
print(valid)
The number may only contain numbers and dashes. The number must have the right format (dd-ddd-dddd).
What is true about this program?Options
- AThere will be no error but there will be an unwanted result.
- BThere will be a SyntaxError.
- CThe program works properly.
- DThere will be an AttributeError.
Unlock PCEP-30-02 to see the answer
You've previewed enough free PCEP-30-02 questions. Unlock PCEP-30-02 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.