Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:
I forget the word for it, but probably the guys who set up the power lines in the city.
Explanation:
Explanation:
There are 8.35 pounds in a gallon of water. Water weighs 1 gram per cubic centimeter or 1 000 kilogram per cubic meter, i.e. density of water is equal to 1 000 kg/m³; at 25°C (77°F or 298.15K) at standard atmospheric pressure.
The exercise is about finding the missing medical terms from the list below.. See the sentences below for the missing words.
<h3>What are the completed sentences?</h3>
- The outbreak and spread of epidemic diseases, such as swine flu, are tracked by a <u>Public Health Surveillance Team.</u>
- The person who would use equipment to show an image of a baby before birth is a <u>Diagnostic Medical Sonographer.</u>
- The education to become a <u>Medical Practitioner</u> requires more than four years of college.
- When a water source becomes contaminated with an illness-causing bacteria, a <u>Microbiologist</u> could be brought in to study how to get rid of the microorganisms.
Learn more about medical terms at;
brainly.com/question/759368
#SPJ1
Answer:
The percentage ductility is 35.5%.
Explanation:
Ductility is the ability of being deform under applied load. Ductility can measure by percentage elongation and percentage reduction in area. Here, percentage reduction in area method is taken to measure the ductility.
Step1
Given:
Diameter of shaft is 10.2 mm.
Final area of the shaft is 52.7 mm².
Calculation:
Step2
Initial area is calculated as follows:


A = 81.713 mm².
Step3
Percentage ductility is calculated as follows:


D = 35.5%.
Thus, the percentage ductility is 35.5%.