Answer:
Give me brainliest thanks
Answer:
See the attached picture.
Explanation:
See the attached picture.
Answer:
the depth of the shaft,
the carrying load of the skip and the mass of the counterweight,
the approximate size of the winding drum,
the approximate height of the headgear and the sheave wheel
Technology is the collection of techniques, skills, methods and processes used in the production of goods or services or in the accomplishment of objectives, such as scientific investigation. Technology can be the knowledge of techniques, processes, etc. or it can be embedded in machines, computers, devices and factories, which can be operated by individuals without detailed knowledge of the workings of such things.
Answer:
The function in C is as follows:
int nexthour(int tme){
tme = tme%12 + 1;
return tme;
}
Explanation:
This defines the function
int nexthour(int tme){
Ths calculates the next hour using % operator
tme = tme%12 + 1;
This returns the next hour
return tme;
}