Answer:
S = 0.5 km
velocity of motorist = 42.857 km/h
Explanation:
given data
speed = 70 km/h
accelerates uniformly = 90 km/h
time = 8 s
overtakes motorist = 42 s
solution
we know initial velocity u1 of police = 0
final velocity u2 = 90 km/h = 25 mps
we apply here equation of motion
u2 = u1 + at
so acceleration a will be
a =
a = 3.125 m/s²
so
distance will be
S1 = 0.5 × a × t²
S1 = 100 m = 0.1 km
and
S2 = u2 × t
S2 = 25 × 16
S2 = 400 m = 0.4 km
so total distance travel by police
S = S1 + S2
S = 0.1 + 0.4
S = 0.5 km
and
when motorist travel with uniform velocity
than total time = 42 s
so velocity of motorist will be
velocity of motorist = 
velocity of motorist =
velocity of motorist = 42.857 km/h
Answer:
The trunks were all cut at the same lenght, 9 Carolingian feet, easier to carry away and to build. The construction was built by a team of four people, using traditional tools such as a hand saw, clamp, gimlet, Catalan type axe, wood hammer, chisel, two-handed wood saw, heavy wood hammer and metal wedges.
Explanation:
The reactor, generator, and the cooling towers
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.