Answer:
Here are 2 sense i cant find 4
Explanation:
Levers are used to multiply force, In other words, using a lever gives you greater force or power than the effort you put in.
In a lever, if the distance from the effort to the fulcrum is longer than the distance from the load to the fulcrum, this gives a greater mechanical advantage.
Answer:
Hearing protection would be your answer!
Explanation:
This includes earplugs,muffs etc.
Hope it helps!
Answer:
The value of critical length = 3.46 mm
The value of volume of fraction of fibers = 0.43
Explanation:
Given data
= 800 M pa
D = 0.017 mm
L = 2.3 mm
= 5500 M pa
= 18 M pa
= 13.5 M pa
(a) Critical fiber length is given by

Put all the values in above equation we get

mm
This is the value of critical length.
(b).Since this critical length is greater than fiber length Than the volume fraction of fibers is given by

Put all the values in above formula we get

= 0.43
This is the value of volume of fraction of fibers.
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.