Answer:
The atmospheric pressure in atm=0.885 atm
Explanation:
Given that
Local pressure (h)= 30 ft of water height ( 1 ft= 0.3048 m)
We know that pressure in given by
P=ρgh
We know that ρ of water is 1000
So pressure
P=1000(9.81)(9.144)
We know that 1000 Pa=0.00986 atm
So P=0.885 atm
The atmospheric pressure in atm=0.885 atm
Answer:
A scientific theory is an explanation of an aspect of the natural world and universe that has been repeatedly tested and verified in accordance with the scientific method, using accepted protocols of observation, measurement, and evaluation of results. Where possible, theories are tested under controlled conditions in an experiment. In circumstances not amenable to experimental testing, theories are evaluated through principles of abductive reasoning. Established scientific theories have withstood rigorous scrutiny and embody scientific knowledge.
A scientific theory differs from a scientific fact or scientific law in that a theory explains "why" or "how": a fact is a simple, basic observation, whereas a law is a statement (often a mathematical equation) about a relationship between facts. For example, Newton’s Law of Gravity is a mathematical equation that can be used to predict the attraction between bodies, but it is not a theory to explain how gravity works. Stephen Jay Gould wrote that "...facts and theories are different things, not rungs in a hierarchy of increasing certainty. Facts are the world's data. Theories are structures of ideas that explain and interpret facts.
mark me as brainlist
MW means megawatt, and one megawatt is a million Watts.
The 2.5 MW turbine is 4/2.5=1.6 $/w
Answer B
Answer:
Heat losses by convection, Qconv = 90W
Heat losses by radiation, Qrad = 5.814W
Explanation:
Heat transfer is defined as the transfer of heat from the heat surface to the object that needs to be heated. There are three types which are:
1. Radiation
2. Conduction
3. Convection
Convection is defined as the transfer of heat through the actual movement of the molecules.
Qconv = hA(Temp.final - Temp.surr)
Where h = 6.4KW/m2K
A, area of a square = L2
= (0.25)2
= 0.0625m2
Temp.final = 250°C
Temp.surr = 25°C
Q = 64 * 0.0625 * (250 - 25)
= 90W
Radiation is a heat transfer method that does not rely upon the contact between the initial heat source and the object to be heated, it can be called thermal radiation.
Qrad = E*S*(Temp.final4 - Temp.surr4)
Where E = emissivity of the surface
S = boltzmann constant
= 5.6703 x 10-8 W/m2K4
Qrad = 5.6703 x 10-8 * 0.42 * 0.0625 * ((250)4 - (25)4)
= 5.814 W
Below is the program to separate odd and even numbers
<u>Explanation</u>:
<u>L1:</u>
mov ah,00
mov al,[BX]
mov dl,al
div dh
cmp ah,00
je EVEN1
mov [DI],dl
add OddAdd,dl
INC DI
INC BX
Loop L1
jmp CAL
<u>EVEN1:</u>
mov [SI],dl
add Even Add,dl
INC SI
INC BX
Loop L1
<u>CAL: </u>
mov ax,0000
mov bx,0000
mov al,OddAdd
mov bl,EvenAdd
MOV ax,4C00h
int 21h
end
The above program separates odd and even numbers from the array using 8086 microprocessor. It has odd numbers in 2000h and even numbers in 3000h.