[Q23-Q42] 98-381 Certification – The Ultimate Guide [Updated 2022]

4/5 - (1 vote)

98-381 Certification – The Ultimate Guide [Updated 2022]

98-381 Practice Exam and Study Guides – Verified By ExamsLabs

Books for Preparing for Microsoft 98-381 Validation

You can use the following revision guides for advancing your knowledge about Python as well as its features and functionalities. Grab them from Amazon to enhance your knowledge and get success in the official Microsoft 98-381 test:

  • Python Crash Course, 2nd Edition: A Hands-On, Project-Based Introduction to Programming by Eric Matthes

    Being the bestseller in Python programming, this noteworthy guide will cater to all those who are only getting acquainted with this language. In particular, such a manual targets beginning programmers who are aspiring to learn how to solve Python-related issues, write programs, and create workable stuff in the nick of time. In terms of the skill areas addressed by this revision material, they revolve around varied Python tools for creating libraries like Pygame & Django, making 2D games, customizing web applications, and identifying the errors that stumble the process of doing programming like a pro. So, if with time, you’ve tasked yourself to become a real Python geek, then a book like this is the best-in-class material that’ll serve this purpose to the full extent.

  • Introduction to Computation and Programming Using Python by John V. Guttag

    A book like this introduces the candidates to programming using Python. Thus, you can solve the computational problems using Python as well as various Python libraries. It then provides you with the skills that will help you make productive use of computational techniques and tools. After that, it helps you learn about the use of computation to model and interpret the data on machine learning. To achieve an understanding of Python and its appropriate usage, you can fetch such a helpful guide from Amazon today.

Domain Input as well as Output (I/O) Operations

The third exam section throws a considerable amount of light on the concepts such as code writing related to input and output. Candidates should be skilled in writing & testing code segments responsible for running console I/O operations along with ones for files. They have to know how to use command-line arguments, read input from the console, and print formatted text, among the rest.

 

Q23. You develop a Python application for your school.
You need to read and write data to a text file. If the file does not exist, it must be created. If the file has content, the content must be removed.
Which code should you use?

 
 
 
 

Q24. DRAG DROP
You are writing a Python program. The program collects customer data and stores it in a database.
The program handles a wide variety of data.
You need to ensure that the program handles the data correctly so that it can be stored in the database correctly.
Match the data type to the code segment. To answer, drag the appropriate data type from the column on the left to its code segment on the right. Each data type may be used once, more than once, or not at all.
Select and Place:

Q25. 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:

Q26. HOTSPOT
You find errors while evaluating the following code. Line numbers are included for reference only.

You need to correct the code at line 03 and line 06.
How should you correct the code? Use the drop-down menus to select the answer choice that answers each question based on the information presented in the code segment.
NOTE: Each correct selection is worth one point.
Hot Area:

Q27. HOTSPOT
You are developing a Python application for your company.
You write the following code:

Use the drop-down menus to select the answer choice that answers each question based on the information presented in the code segment.
Hot Area:

Q28. DRAG DROP
You are building a Python program that displays all of the prime numbers from 2 to 100.
How should you complete the code? To answer, drag the appropriate code segments to the correct location. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

Q29. HOTSPOT
You create a function to calculate the power of a number by using Python.
You need to ensure that the function is documented with comments.
You create the following code. Line numbers are included for reference only.

For each of the following statements, select Yes if the statement is true. Otherwise, select No.
Answer Area

Q30. 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 Trueif the format is correct and print Falseif the format is incorrect.
How should you complete the code? To answer, select the appropriate code segments in the answer area.
Hot Area:

Q31. You are writing code that generates a random integer with a minimum value of 5 and a maximum value of 11.
Which two functions should you use? Each correct answer presents a complete solution. (Choose two.)

 
 
 
 

Q32. HOTSPOT
You are developing a Python application for an online game.
You need to create a function that meets the following criteria:
* The function is named update_score
* The function receives the current score and a value
* The function adds the value to the current score
* The function returns the new score
How should you complete the code? To answer, select the appropriate code segments in the answer area.

Q33. The ABC company has hired you as an intern on the coding team that creates e-commerce applications.
You must write a script that asks the user for a value. The value must be used as a whole number in a calculation, even if the user enters a decimal value.
You need to write the code to meet the requirements.
Which code segment should you use?

 
 
 
 

Q34. HOTSPOT
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.

Q35. 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.

Q36. DRAG DROP
You are building a Python program that displays all of the prime numbers from 2 to 100.
How should you complete the code? To answer, drag the appropriate code segments to the correct location.
Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:

Q37. HOTSPOT
You develop a Python application for your company.
You have the following code. Line numbers are included for reference only.

Use the drop-down menus to select the answer choice that answers each question based on the information presented in the code segment.
Hot Area:

Q38. You are writing a Python program to automate inventory. Your first task is to read a file of inventory
transactions. The file contains sales from the previous day, including the item id, price, and quantity.
The following shows a sample of data from the file:

The code must meet the following requirements:
* Each line of the file must be read and printed
* If a blank line is encountered, it must be ignored
* When all lines have been read, the file must be closed
You create the following code. Line numbers are included for reference only.

Which code should you write for line 05 and line 06?

 
 
 
 

Q39. DRAG DROP
You are writing a Python program to perform arithmetic operations.
You create the following code:


What is the result of each arithmetic expression? To answer, drag the appropriate expression from the column on the left to its result on the right. Each expression may be used once, more than once, or not at all.

Q40. You develop a Python application for your company.
You need to accept input from the user and print that information to the user screen.
You have started with the following code. Line numbers are included for reference only.

Which code should you write at line 02?

 
 
 
 

Q41. HOTSPOT
The ABC Video company needs a way to determine the cost that a customer will pay for renting a DVD. The cost is dependent on the time of day the DVD is returned. However, there are also special rates on Thursdays and Sundays. The fee structure is shown in the following list:
* The cost is $1.59 per night.
* If the DVD is returned after 8 PM, the customer will be charged an extra day.
* If the video is rented on a Sunday, the customer gets 30% off for as long as they keep the video.
* If the video is rented on a Thursday, the customer gets 50% off for as long as they keep the video.
You need to write code to meet the requirements.
How should you complete the code? To answer, select the appropriate code segments in the answer area.

Q42. You are creating a Python program that shows a congratulation message to employees on their service anniversary.
You need to calculate the number of years of service and print a congratulatory message.
You have written the following code. Line numbers are included for reference only.

You need to complete the program.
Which code should you use at line 03?

 
 
 
 

What are the details of the Microsoft 98-381 exam?

As for the structure of the Microsoft 98-381 exam, it contains about 40-60 questions of different types, including drag and drop, multiple choice, case study, short answer, repeated answer choice, active screen, build list, and others. The candidates should complete answering these questions within 50 minutes. To pass this test with high results, one has to score at least 700 points on a scale of 100-1000.

Please note that the test takers can choose the language of this exam. The available options include English, Korean, Japanese, Chinese (Traditional and Simplified), German, Spanish, French, and Portuguese (Brazil). The fee for Microsoft 98-381 is $127. This is the amount you are required to pay if you are taking this test in the United States. After paying for the exam, you can schedule to sit for it as a proctored test or online from your home, office, or wherever you may be. Alternatively, it can be taken at any Pearson VUE center worldwide.

One of the most important things that you should know about any Microsoft exam is its retake and cancellation policy. The policy for Microsoft 98-381 is very simple, as the candidates only have up to five attempts per test in a year. If you don’t achieve the passing score the first time, you can retake it after 24 hours. If your next tries are also unsuccessful, you have to wait for at least 14 days for the third, fourth, and fifth attempts. You can also reschedule or cancel your exam. To do this, you have to send your request at least 24 hours before the exam appointment. In any other way, you will waste your fee.

 

Ultimate Guide to the 98-381 – Latest Edition Available Now: https://www.examslabs.com/Microsoft/Microsoft-Python/best-98-381-exam-dumps.html