HOTSPOT
You are writing a Python program to validate employee numbers.
The employee number must have the format ddd - dd - dddd and consist only of numbers and dashes.
The program must print True if the format is correct and print False if the format is incorrect.
How should you complete the code? To answer, select the appropriate code segments in the answer
area.
Answer:
Question No 2
HOTSPOT
You are coding a math utility by using Python.
You are writing a function to compute roots.
The function must meet the following requirements:
How should you complete the code? To answer, select the appropriate code segments in the answer
area.
Answer:
References:
https://www.w3resource.com/python/python - if - else - statements.php
Question No 3
HOTSPOT
You work for a company that distributes media for all ages.
You are writing a function that assigns a rating based on a user’s age. The function must meet the
following requirements:
Anyone 18 years old or older receives a rating of “A”
Anyone 13 or older, but younger than 18, receives a rating of “T”
Anyone 12 years old or younger receives a rating of “C”
If the age is unknown, the rating is set to “C”
You need to complete the code to meet the requirements.
Answer:
0
1
References:
https://www.w3resource.com/python/python - if - else - statements.php
Question No 4
HOTSPOT
You are designing a decision structure to convert a student’s numeric grade to a letter grade. The
program must assign a letter grade as specified in the following table:
For example, if the user enters a 90, the output should be, “Your letter grade is A”. Likewise, if a user
enters an 89, the output should be “Your letter grade is B”.
How should you complete the code? To answer, select the appropriate code segments in the answer
area.
2
3
Answer:
4
5
References:
https://www.w3resource.com/python/python - if - else - statements.php