Answer:
True
Explanation:
It could either be true or false because you dont really have to be great at something just to do it, you could try new things too.
Answer:
work is 50 kj
Explanation:
Given data
heat (Q) = 50 kj
To find out
work input for the compression stroke per kilogram of air
Solution
we will apply here "first law of thermodynamics" i.e.
The First Law of Thermodynamics states that heat is a form of energy, subject to the principle of conservation of energy, that heat energy cannot be created or destroyed. It can be transferred from one location to another location. i.e.
ΔU = Q – W ................1
here ΔU is change in internal energy, Q is heat and W is work done
here U = 0 because air compressor the compression takes place at a constant internal energy in question
so that by equation 1
Q = W
and Q = 50
so work will be 50 kj
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:
The bulb will be times as bright as it is in Europe.
Explanation:
Data provided in the question:
Power of bulb in Europe = 75 W
Voltage provided in Europe = 240 V
Voltage provided in United Stated = 120 V
Now,
We know,
Power = Voltage² ÷ Resistance
Therefore,
75 = 240² ÷ Resistance
or
Resistance = 240² ÷ 75
or
Resistance = 768 Ω
Therefore,
Power in United States = Voltage² ÷ Resistance
= 120² ÷ 768
= 18.75 W
Therefore,
Ratio of powers
=
Hence,
The bulb will be times as bright as it is in Europe.