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 if the format is incorrect.
False -
How should you complete the code? To answer, select the appropriate code segments in the answer area.
Hot Area:
Answer :
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:
Answer :
References: https://www.w3resource.com/python/python-if-else-statements.php
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.
Hot Area:
Answer :
References: https://www.w3resource.com/python/python-if-else-statements.php
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:
Answer :
References: https://www.w3resource.com/python/python-if-else-statements.php
You are developing a Python application for an online product distribution company.
You need the program to iterate through a list of products and escape when a target product ID is found.
How should you complete the code? To answer, select the appropriate code segments in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
Answer :
References: https://www.w3resource.com/python/python-while-loop.php