Certbus > Microsoft > MTA > 98-381 > 98-381 Online Practice Questions and Answers

98-381 Online Practice Questions and Answers

Questions 4

DRAG DROP

You are creating a Python script to evaluate input and check for upper and lower case.

Which four code segments should you use to develop the solution? To answer, move the appropriate code segment from the list of code segments to the answer area and arrange them in the correct order.

Select and Place:

Browse 40 Q&As
Questions 5

DRAG DROP

The ABC company is converting an existing application to Python. You are creating documentation that will be used by several interns who are working on the team.

You need to ensure that arithmetic expressions are coded correctly.

What is the correct order of operations for the six classes of operations ordered from first to last in order of precedence? To answer, move all operations from the list of operations to the answer area and arrange them in the correct order.

Select and Place:

Browse 40 Q&As
Questions 6

DRAG DROP

You are writing a Python program that evaluates an arithmetic formula.

The formula is described as b equals a multiplied by negative one, then raised to the second power, where a is the value that will be input and b is the result.

You create the following code segment. Line numbers are included for reference only.

You need to ensure that the result is correct.

How should you complete the code on line 02? To answer, drag the appropriate code segment 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:

Browse 40 Q&As
Questions 7

DRAG DROP

You are writing a function that works with files.

You need to ensure that the function returns None if the file does not exist. If the file does exist, the function must return the first line.

You write the following code:

In which order should you arrange the code segments to complete the function? To answer, move all code segments from the list of code segments to the answer area and arrange them in the correct order.

Select and Place:

Browse 40 Q&As
Questions 8

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:

Browse 40 Q&As
Questions 9

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.

Hot Area:

Browse 40 Q&As
Questions 10

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?

A. totalItems = input("How many items would you like?")

B. totalItems = float(input("How many items would you like?"))

C. totalItems = str(input("How many items would you like?"))

D. totalItems = int(input("How many items would you like?"))

Browse 40 Q&As
Questions 11

You develop a Python application for your company.

A list named employees contains 200 employee names, the last five being company management. You need to slice the list to display all employees excluding management.

Which two code segments should you use? Each correct answer presents a complete solution. (Choose two.)

A. employees [1:-4]

B. employees [:-5]

C. employees [1:-5]

D. employees [0:-4]

E. employees [0:-5]

Browse 40 Q&As
Questions 12

You are creating a function that manipulates a number. The function has the following requirements: A float is passed into the function The function must take the absolute value of the float Any decimal points after the integer must be removed

Which two math functions should you use? Each correct answer is part of the solution. (Choose two.)

A. math.fmod(x)

B. math.frexp(x)

C. math.floor(x)

D. math.ceil(x)

E. math.fabs(x)

Browse 40 Q&As
Questions 13

You are writing an application that uses the sqrt function. The program must reference the function using the name squareRoot.

You need to import the function.

Which code segment should you use?

A. import math.sqrt as squareRoot

B. import sqrt from math as squareRoot

C. from math import sqrt as squareRoot

D. from math.sqrt as squareRoot

Browse 40 Q&As
Questions 14

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

A. random.randint(5, 12)

B. random.randint(5, 11)

C. random.randrange(5, 12, 1)

D. random.randrange(5, 11, 1)

Browse 40 Q&As
Questions 15

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?

A. Option A

B. Option B

C. Option C

D. Option D

Browse 40 Q&As
Questions 16

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?

A. name = input

B. input("name")

C. input(name)

D. name = input()

Browse 40 Q&As
Questions 17

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?

A. open("local_data", "r")

B. open("local_data", "r+")

C. open("local_data", "w+")

D. open("local_data", "w")

Browse 40 Q&As
Questions 18

The ABC company is creating a program that allows customers to log the number of miles biked. The program will send messages based on how many miles the customer logs. You create the following Python code. Line numbers are included for reference only.

You need to define the two required functions.

Which code segments should you use for line 01 and line 04? Each correct answer presents part of the solution? (Choose two.)

A. 01 def get_name():

B. 01 def get_name(biker):

C. 01 def get_name(name):

D. 04 def calc_calories():

E. 04 def calc_calories(miles, burn_rate):

F. 04 def calc_calories(miles, calories_per_mile):

Browse 40 Q&As
Exam Code: 98-381
Exam Name: Introduction to Programming Using Python
Last Update: Apr 15, 2024
Questions: 40 Q&As

PDF

$45.99

VCE

$49.99

PDF + VCE

$59.99