Answer: speed up food processing
speed up plant growth
Increase fuel efficiency
Explanation:
A catalyst simply refers to a substance that leads to an increase in the reaction rate when it's added to a substance. When the activation energy is reduced by catalysts, this.hwlpa on the speeding up of a reaction.
Therefore,the functions of catalysts include speed up food processing, speeding up plant growth and increase fuel efficiency
Answer:
c) can be made with a variety of surface finishes.
Explanation:
The missing options are;
When it comes to concrete work in construction, the concrete can be cast either in-situ or in form of pre-cast concrete.
Now in-situ concrete means concrete done on the construction site being built while pre cast concrete simply means concrete cast outside in a factory or yard and brought to site to mount.
These pre cast concrete could have different surface finishes as required as this is one of it's advantages over in situ because there is a lot of space and room to have the desired concrete finish.
a) are typically manufactured on site and then hoisted into place.
b) cannot be fiber-reinforced.
c) can be made with a variety of surface finishes.
d) never include insulation.
e) often are unreinforced.
The weight of the specimen in SSD condition is 373.3 cc
<u>Explanation</u>:
a) Apparent specific gravity = 
Where,
A = mass of oven dried test sample in air = 1034 g
B = saturated surface test sample in air = 1048.9 g
C = apparent mass of saturated test sample in water = 975.6 g
apparent specific gravity =
= 
Apparent specific gravity = 2.88
b) Bulk specific gravity 

= 2.76
c) Bulk specific gravity (SSD):


= 2.80
d) Absorption% :


Absorption = 1.44 %
e) Bulk Volume :


= 
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.