Introduction to Programming Using Python

Here you have the best Microsoft 98-381 practice exam questions

  • You have 40 total questions to study from
  • Each page has 5 questions, making a total of 8 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on November 16, 2024
Question 1 of 40

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:

    Correct Answer:

Question 2 of 40

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.

Hot Area:

    Correct Answer:

    References: https://www.w3resource.com/python/python-if-else-statements.php

Question 3 of 40

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:

    Correct Answer:

    References: https://www.w3resource.com/python/python-if-else-statements.php

Question 4 of 40

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.

Hot Area:

    Correct Answer:

    References: https://www.w3resource.com/python/python-if-else-statements.php

Question 5 of 40

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:

    Correct Answer:

    References: https://www.w3resource.com/python/python-while-loop.php