Answer:
a) the object floats
b) the object floats
c) the object sinks
Explanation:
when an object is less dense than in the fluid in which it is immersed, it will float due to its weight and volume characteristics, so to solve this problem we must find the mass and volume of each object in order to calculate the density and compare it with that of water
a)
volumen for a cube
V=L^3
L=1.53in=0.0388m
V=0.0388 ^3=5.8691x10^-5m^3=58.69ml
density=m/v
density=13.5g/58.69ml=0.23 g/ml
The wooden block floats because it is less dense than water
b)
m=111mg=0.111g
density=m/v
density=0.111g/0.296ml=0.375g/ml
the metal paperclip floats because it is less dense than water
c)
V=0.93cups=220.0271ml
m=0.88lb=399.1613g
Density=m/v
density=399.1613/220.027ml=1.8141g/ml
the apple sinks because it is denser than water
Explanation:
Instantaneous center:
It is the center about a body moves in planer motion.The velocity of Instantaneous center is zero and Instantaneous center can be lie out side or inside the body.About this center every particle of a body rotates.
From the diagram
Where these two lines will cut then it will the I-Center.Point A and B is moving perpendicular to the point I.
If we take three link link1,link2 and link3 then I center of these three link will be in one straight line It means that they will be co-linear.

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.