Answer:
35.7 kg lid we put
Explanation:
given data
temperature = 105 celcius
diameter = 15 cm
Patm = 101 kPa
to find out
How heavy a lid should you put
solution
we know Psaturated from table for temperature is 105 celcius is
Psat = 120.8 kPa
so
area will be here
area =
..................1
here d is diameter
put the value in equation 1
area =
area = 0.01767 m²
so net force is
Fnet = ( Psat - Patm ) × area
Fnet = ( 120.8 - 101 ) × 0.01767
Fnet = 0.3498 KN = 350 N
we know
Fnet = mg
mass = ![\frac{Fnet}{g}](https://tex.z-dn.net/?f=%5Cfrac%7BFnet%7D%7Bg%7D)
mass = ![\frac{350}{9.8}](https://tex.z-dn.net/?f=%5Cfrac%7B350%7D%7B9.8%7D)
mass = 35.7 kg
so 35.7 kg lid we put
Answer:
Yes
Explanation:
Given Data
Temprature of source=750°c=1023k
Temprature of sink =0°c=273k
Work produced=3.3KW
Heat Rejected=4.4KW
Efficiency of heat engine(η)=![\frac{Work produced}{Heat supplied}](https://tex.z-dn.net/?f=%5Cfrac%7BWork%20produced%7D%7BHeat%20supplied%7D)
and
Heat Supplied ![{\left (Q_s\right)}=Work Produced(W)+Heat rejected\left ( Q_r \right )](https://tex.z-dn.net/?f=%7B%5Cleft%20%28Q_s%5Cright%29%7D%3DWork%20Produced%28W%29%2BHeat%20rejected%5Cleft%20%28%20Q_r%20%5Cright%20%29)
![{Q_s}=3.3+4.4=7.7KW](https://tex.z-dn.net/?f=%7BQ_s%7D%3D3.3%2B4.4%3D7.7KW)
η=![\frac{3.3}{7.7}](https://tex.z-dn.net/?f=%5Cfrac%7B3.3%7D%7B7.7%7D)
η=42.85%
Also the maximum efficiency of a heat engine operating between two different Tempratures i.e. Source & Sink
η=1-![\frac{T_ {sink}}{T_ {source}}](https://tex.z-dn.net/?f=%5Cfrac%7BT_%20%7Bsink%7D%7D%7BT_%20%7Bsource%7D%7D)
η=1-![\frac{273}{1023}](https://tex.z-dn.net/?f=%5Cfrac%7B273%7D%7B1023%7D)
η=73.31%
Therefore our Engine Efficiency is less than the maximum efficiency hence the given claim is valid.
Answer:
#include <stdio.h>
typedef struct InventoryTag_struct {
int itemID;
int quantityRemaining;
} InventoryTag;
int main(void) {
InventoryTag redSweater;
redSweater.itemID = 314;
redSweater.quantityRemaining = 500;
/* Your solution goes here */
printf("Inventory ID: %d, Qty: %d\n",redSweater.itemID,redSweater.quantityRemaining);
getchar();
return 0;
}
Explanation:
Answer:
option (c) is the correct answer which is zero acceleration.
Explanation:
It is given in the question that the velocity is constant.
Now,
the options are provided in relation to the acceleration.
We know,
acceleration is rate of change of velocity per unit time i.e
acceleration =
since, the change in velocity is given to be zero,
thus, dV/dt = 0
hence,
acceleration = 0
therefore, option (c) is the correct answer which is zero acceleration.
<h2>
˜”*°•.˜”*°• Question •°*”˜.•°*”˜
</h2>
<em>What Member function places a new node at the end of the linked list?
</em>
<h2>
˜”*°•.˜”*°• Answer •°*”˜.•°*”˜</h2>
appendNode
<h2>˜”*°•.˜”*°• Explanation •°*”˜.•°*”˜</h2>
The appendNode() member function places a new node at the end of the linked list. The appendNode() requires an integer representing the current data of the node.
<h2>˜”*°•.˜”*°• Details •°*”˜.•°*”˜</h2>
Subject: Coding (?)
Grade: College
Keywords: Function, linked list, appendNode, integer
Hope this helped. <3