On highways, the far left lane is usually the<u> fastest</u> moving traffic.
Answer: Option D.
<u>Explanation:</u>
For the most part, the right lane of a freeway is for entering and leaving the traffic stream. It is an arranging path, for use toward the start and end of your interstate run. The center paths are for through traffic, and the left path is for passing. On the off chance that you are not passing somebody, try not to be driving in the left path.
Regular practice and most law on United States expressways is that the left path is saved for passing and quicker moving traffic, and that traffic utilizing the left path must respect traffic wishing to surpass.
Answer:
No
Explanation:
Heat engines are used for converting the heat into mechanical energy which is used for doing mechanical work.
The efficiency of heat engine is the fraction of mechanical energy to the thermal energy. The efficiency can not be 100% as some of the energy always loss due to friction and motion of the body parts of the heat engine.
Answer:
gauge pressure is 133 kPa
Explanation:
given data
initial temperature T1 = 27°C = 300 K
gauge pressure = 300 kPa = 300 × 10³ Pa
atmospheric pressure = 1 atm
final temperature T2 = 77°C = 350 K
to find out
final pressure
solution
we know that gauge pressure is = absolute pressure - atmospheric pressure so
P (gauge ) = 300 × 10³ Pa - 1 ×
Pa
P (gauge ) = 2 ×
Pa
so from idea gas equation
................1
so
P2 = 2.33 ×
Pa
so gauge pressure = absolute pressure - atmospheric pressure
gauge pressure = 2.33 ×
- 1.0 ×
gauge pressure = 1.33 ×
Pa
so gauge pressure is 133 kPa
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.