1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
sergeinik [125]
3 years ago
10

g A pedometer treats walking 2,000 steps as walking 1 mile. Write a program whose input is the number of steps, and whose output

is the miles walked. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('{:.2f}'.format(your_value))
Engineering
2 answers:
Nataly [62]3 years ago
8 0

Answer:

# Program is written in Python Programming Language

# Comments are used for explanatory purpose

# Program starts here

# Accept input

Steps = input (Number of Steps: ")

# Calculate distance

distance = float(2000) * float(steps)

#Print Formatted Result

print('%0.2f' % distance)

# End of Program

.--------

The above program converts number of steps to miles.

At line 5, the number of steps is inputted and stored in variable named Steps.

At line 6, the number of miles is calculated by multiplying 2000 by the content of variable Steps

The result is printed at line 8

Novosadov [1.4K]3 years ago
5 0

Answer:

steps = int(input("Enter the number of steps: "))

miles = steps / 2000

print('{:.2f}'.format(miles))Explanation:

You might be interested in
Suppose within your web browser you click on a link to obtain a web page. The IP address for the associated URL is already cache
aleksandrvk [35]

Answer:

All the detailed steps are mentioned in pictures.

Explanation:

See attached pictures.

8 0
3 years ago
A single-phase transformer circuit feeds a motor and lighting load of 50 kilowatts. At a power factor of .8, the KVA rating of t
AveGali [126]

The KVA rating of the step down transformer at the given power factor would be 62.5 kVA.

<h3>What is power factor of a transformer?</h3>

Power factor (PF) is the ratio of working power, measured in kilowatts (kW), to apparent power, measured in kilovolt amperes (kVA).

PF = working power / apparent power

PF =  kW/kVA

kVA = kW/PF

kVA = 50 kW/0.8

kVA = 62.5 kVA

Thus, the KVA rating of the step down transformer at the given power factor would be 62.5 kVA.

Learn more about power factor here: brainly.com/question/7956945

#SPJ1

3 0
2 years ago
How to build a robot
Anuta_ua [19.1K]
Seriously? Ok

first, get some good quality metal, preferably aluminum, if you want to avoid rust.

build in the the shape of a robot, you can use a doll to help you if you are a beginner, but feel free to shape it the a Star Wars Character!

create an AI (now you said robot not AI) and fix everything up.
7 0
3 years ago
An urgent. Please answer this. :)<br><br>1 &amp; 2 are Ω<br><br>3 &amp; 4 are V​
balandron [24]

Answer:

See below ↓

Explanation:

1) 40 Ω

2) 24 Ω

3) 85 V

4) 135 V

6 0
2 years ago
Two identical 3 in. major-diameter power screws (single-threaded) with modified square threads are used to raise and lower a 50-
sp2606 [1]

Answer:

Check the explanation

Explanation:

Kindly check the attached images below to see the step by step explanation to the question above.

6 0
3 years ago
Other questions:
  • Members of the student council have been asked by their
    5·1 answer
  • A steam turbine receives 8 kg/s of steam at 9 MPa, 650 C and 60 m/s (pressure, temperature and velocity). It discharges liquid-v
    7·1 answer
  • A fluid of specific gravity 0.96 flows steadily in a long, vertical 0.71-in.-diameter pipe with an average velocity of 0.90 ft/s
    5·2 answers
  • For a LED diode that has a= 632 nm, then the A1 is equal to:​
    13·1 answer
  • How to find magnitude of forces
    8·1 answer
  • Select the correct answer.
    6·1 answer
  • Need help with these 3 ez questions pls help me will mark brainiest.
    15·1 answer
  • Omg help mr idk what to say ahhh​
    15·2 answers
  • A kitchen contains one section of counter that's 20 inches
    7·1 answer
  • Precast concrete curtain wall panels: Group of answer choices are typically manufactured on site and then hoisted into place. of
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!