Answer:
b. 10A
Explanation:
Using the formula, E= k × r×I
200= 0.5 ×2000×0.02×I
200=20×I
Dividing with 20
I = 200/20= 10A
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
Answer:
Greywater.
Explanation:
Greywater is also known as sullage and it can be defined as any form of gently used wastewater derived from sources within a residential or office building such as showers, washing machines, bathroom sinks, bathroom tub, etc.
Generally, greywater or sullage is completely free of fecal materials (faeces) because it is independent from all toilet activities. However, greywater is not clean for direct use because it usually contains food particles, dirt, oil from dishes, hair, etc.
In this scenario, Anna makes arrangements to reuse waste water that has been used in sinks and showers. Greywater is a term which refers to the waste water that Anna reuses to conserve resources.
Therefore, Anna reuses greywater to conserve resources.