100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
WGU D335 Practice Test 2 Latest 2024 Questions and Answers $8.99   Add to cart

Exam (elaborations)

WGU D335 Practice Test 2 Latest 2024 Questions and Answers

 5 views  0 purchase
  • Course
  • WGU D335
  • Institution
  • WGU D335

WGU D335 Practice Test 2 Latest 2024 Questions and Answers Create a solution that accepts three integer inputs representing the number of times an employee travels to a job site. Output the total distance traveled to two decimal places given the following miles per employee commute to the job site...

[Show more]

Preview 2 out of 10  pages

  • August 15, 2024
  • 10
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
  • WGU D335
  • WGU D335
avatar-seller
JPNAOMISTUVIA
WGU D335 Practice Test 2 Latest 2024
Questions and Answers
Create a solution that accepts three integer inputs representing the number of times an
employee travels to a job site. Output the total distance traveled to two decimal places
given the following miles per employee commute to the job site. Output the total
distance traveled to two decimal places given the following miles per employee




A
commute to the job site:




VI
Employee A: 15.62 miles
Employee B: 41.85 miles
Employee C: 32.67 miles




TU
times_traveledA = int(input())
times_traveledB = int(input())
times_traveledC = int(input())
IS
employeeA = 15.62 #miles
employeeB = 41.85 #miles
OM

employeeC = 32.67 #miles
distance_traveledA = times_traveledA * employeeA
distance_traveledB = times_traveledB * employeeB
distance_traveledC = times_traveledC * employeeC
NA


total_miles_traveled = distance_traveledA + distance_traveledB + distance_traveledC
print('Distance: {:.2f} miles'.format(total_miles_traveled))
JP




Create a solution that accepts an input identifying the name of a text file, for example,
"WordTextFile1.txt". Each text file contains three rows with one word per row. Using the
open() function and write() and read() methods, interact with the input text file to write a
new sentence string composed of the three existing words to the end of the file contents
on a new line. Output the new file contents.

, file_name = input()
with open(file_name, 'r') as f:
word1 = str(f.readline()).strip()
word2 = str(f.readline()).strip()
word3 = str(f.readline()).strip()


f = open(file_name, 'r')
lines = f.read().splitlines()




A
lines = ' '.join(lines)




VI
f.close()
print(f'{word1}\n{word2}\n{word3}\n{lines}')




TU
Create a solution that accepts an integer input representing any number of ounces.
Output the converted total number of tons, pounds, and remaining ounces based on the
IS
input ounces value. There are 16 ounces in a pound and 2,000 pounds in a ton.
ounces_per_pound = 16
OM

pounds_per_ton = 2000
number_ounces = int(input())
tons = number_ounces // (ounces_per_pound * pounds_per_ton)
remaining_ounces = number_ounces % (ounces_per_pound * pounds_per_ton)
NA


pounds = remaining_ounces // ounces_per_pound
remaining_ounces = remaining_ounces % ounces_per_pound
print('Tons: {}'.format(tons))
JP




print('Pounds: {}'.format(pounds))
print('Ounces: {}'.format(remaining_ounces))




Create a solution that accepts an input identifying the name of a CSV file, for example,
"input1.csv". Each file contains two rows of comma-separated values. Import the built-in
module csv and use its open() function and reader() method to create a dictionary of

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller JPNAOMISTUVIA. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $8.99. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

76669 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$8.99
  • (0)
  Add to cart