Answer:
- def calcSum(d):
- sum = 0
- for x in d:
- sum += int(x)
- return sum
-
- digits = input("Please enter your digits: ")
- print(calcSum(digits))
Explanation:
The solution code is written in Python.
Firstly, create a function that take one input digit string (Line 1).
In the function, create a sum variable with initial value 0.
Use a for loop to traverse through each character in the digit string and in the loop use int method to convert each character to integer and add it to sum variable (Line 3-5) and return the sum as output.
Next, use input function to prompt user enter a digit string (Line 7).
Lastly test the function by passing the input digit as argument and print the result (Line 8).
Answer:
Storage Spaces Direct feature implements software-defined storage and is intended to make storage more versatile by making it easier to add storage, access storage, and use new storage capabilities
Explanation:
Storage Spaces Direct feature appeared in Windows Server 2016 and it is a <em>distributed data storage technology. </em>
Storage Spaces Direct enables local drives of several servers into a fault-tolerant, scalable storage secured from problems of both separate disks and entire servers. Using this feature, one can create virtual volumes on local drives and use them as common clusters to store virtual machine files.
I think the answer is C but I could be wrong
Answer:
Prolonged exposure to vibration
Long periods of localized pressure
Explanation:
Repetitive motion is certainly not harmful, but prolonged repetitive motion can be a cause for injury. This is because if you are in repetitive motion for a long time, you exert a lot of force on your body, and that is certainly going to effect your body. And after a certain limit, even death can be a case. Hence, one should be very concerned about the time limit while their body goes through the repetitive motion.
However, neutral position we are always safe, as it’s an ideal position, as in this position, the work done is zero. Work done= force x displacement. And displacement in neutral position is zero. Hence, zero energy is lost. Hence, we are safe in this position.
Hence the above answer.