Answer:
a) the two-way concrete joist framing system
Explanation:
A waffle slab is also known as ribbed slab, it is a slab which as waffle like appearance with holes beneath. It is adopted in construction projects that has long length, length more than 12m. The waffle slab is rigid, therefore it is used in building that needs minimal vibration.
Answer: vehicles with a front engine and FWD or a rear engine and RWD.
Explanation But the transaxle can also be integrated into the rear axle on cars with a front engine and rear-wheel drive. The transaxle is in the rear where the differential would be rather than beside the engine.
Answer:
Explanation:
Assumptions is that
1. The flow is an unsteady one
2. Bubbles diameter is constant
3. The bubble velocity is slow
4. There is no homogenous reaction
5. It has a one dimensional flux model along the radial direction
Answer:
W=2 MW
Explanation:
Given that
COP= 2.5
Heat extracted from 85°C
Qa= 5 MW
Lets heat supplied at 150°C = Qr
The power input to heat pump = W
From first law of thermodynamics
Qr= Qa+ W
We know that COP of heat pump given as



W=2 MW
For Carnot heat pump


2.5 T₂ - 895= T₂
T₂=596.66 K
T₂=323.6 °C
Answer:
Alice is correct.
The loop are dependent.
Explanation:
for(i = 1; i <= N; i = (i*2)+17 )
for(k = i+1; k <= i+N; k = k+1) // notice i in i+1 and i+N
printf("B")
This is a nested for-loop.
After the first for-loop opening, there is no block of statement to be executed rather a for-loop is called again. And the second for-loop uses the value of i from the first for-loop. The value of N is both called from outside the loop.
So, the second for-loop depend on the first for loop to get the value of i. For clarity purpose, code indentation or use of curly brace is advised.