Answer:
A key element is powering economies with clean energy, replacing polluting coal - and gas and oil-fired power stations - with renewable energy sources, such as wind or solar farms. This would dramatically reduce carbon emissions. Plus, renewable energy is now not only cleaner, but often cheaper than fossil fuels
Explanation:
here is your answer if you like my answer please follow
Answer:
8 mm
Explanation:
Given:
Diameter, D = 800 mm
Pressure, P = 2 N/mm²
Permissible tensile stress, σ = 100 N/mm²
Now,
for the pipes, we have the relation as:
where, t is the thickness
on substituting the respective values, we get
or
t = 8 mm
Hence, the minimum thickness of pipe is 8 mm
Answer:
insert (array[] , value , currentsize , maxsize )
{
if maxsize <=currentsize
{
return -1
}
index = currentsize-1
while (i>=0 && array[index] > value)
{
array[index+1]=array[index]
i=i-1
}
array[i+1]=value
return 0
}
Explanation:
1: Check if array is already full, if it's full then no component may be inserted.
2: if array isn't full:
- Check parts of the array ranging from last position of range towards initial range and determine position of that initial range that is smaller than the worth to be inserted.
- Right shift every component of the array once ranging from last position up to the position larger than the position at that smaller range was known.
- assign new worth to the position that is next to the known position of initial smaller component.
Answer:
The average loss for this device is $10.90
Explanation:
Given data
Specification = 24 +/- 0.4 Amps
average quality cost = $32.00
average value y = 23.9
standard deviation s = 0.211 Amps
32 = k(24.4 - 24)²
32 = k(0.4)² = k(0.16)
k = 32/0.16 = 200
To evaluate average loss, use
L = k{s² + (y - T)²}
T = 24A
L = 200{0.211² + (23.9 - 24)²}
L = $10.90
The average loss for this device is $10.90