The HR department should install wheelchair ramps and widen the doorways as they don't want to loose an exceptional systems engineer who hopes to work at the techtonic group.
What is a wheelchair ramps?
A wheelchair ramp is an inclined plane that can be installed in addition to or instead of stairs. Ramps make it easier for wheelchair users, as well as people pushing strollers, carts, or other wheeled objects, to enter a building.
The Americans with Disabilities Act requires wheelchair ramps (or other ways for wheelchair users to access a building, such as a wheelchair lift) in new construction for public accommodations in the United States.
A wheelchair ramp can be fixed, semi-fixed, or portable. Permanent ramps are intended to be bolted or otherwise attached to the ground. Semi-permanent ramps are commonly used in the short term and rest on top of the ground or concrete pad.
To know more about wheelchair ramps, visit: brainly.com/question/17395685
#SPJ4
Answer:
I = 8.3 Amp
potential drop = 83 V
Explanation:
Power = 100 KW
V = 12,000 V
R = 10 ohms
a)
Calculate current I in each wire:
P = I*V
I = P / V
I = 100 / 12 = 8.333 A
b)
Calculate potential drop in each wire:
V = I*R
V = (8.3) * (10)
V = 83 V
Properties of Carpenter's hammer possess
Explanation:
1.The head of a carpenter's hammer should possess the impact resistance, so that the chips do not peel off the striking face while working.
2.The hammer head should also be very hard, so that it does not deform while driving or eradicate any nails in wood.
3.Carpenter's hammer is used to impact smaller areas of an object.It can drive nails in the wood,can crush the rock and shape the metal.It is not suitable for heavy work.
How hammer head is manufactured :
1.Hammer head is produced by metal forging process.
2.In this process metal is heated and this molten metal is placed in the cavities said to be dies.
3.One die is fixed and another die is movable.Ram forces the two dies under the forces which gives the metal desired shape.
4.The third process is repeated for several times.
Answer:
import java.util.*;
public class Main {
public static void main(String[] args) {
double milesPerGallon = 0;
int totalMiles = 0;
int totalGallons = 0;
double totalMPG = 0;
Scanner input = new Scanner(System.in);
while(true){
System.out.print("Enter the miles driven: ");
int miles = input.nextInt();
if(miles <= 0)
break;
else{
System.out.print("Enter the gallons used: ");
int gallons = input.nextInt();
totalMiles += miles;
totalGallons += gallons;
milesPerGallon = (double) miles/gallons;
totalMPG = (double) totalMiles / totalGallons;
System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);
System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);
}
}
}
}
Explanation:
Initialize the variables
Create a while loop that iterates until the specified condition is met inside the loop
Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.