Skip to main content

google and yahooo

yahoo is better then google

Comments

Popular posts from this blog

How nanobots are used as artificial blood?

Nanobots are actually nano-robots  , those robots whose parts are in the size of nanometers. The application of these nanobots is this that they can be used in those areas where it is difficult for human hands. Since now in human body artificial blood can be used which is made of these nanobots . Just like human blood which consist of 1. Red blood cells 2. White blood cells 3. Platelets Function of RED BLOOD CELLS 1. Haemoglobin transports about 97-98% of oxygen from lungs to body tissues as oxyhaemoglobin. 2. Haemoglobin also transports about 23% of carbon dioxide from the body tissues to the lungs as carbaminohaemoglobin. FUNCTION OF WHITE BLOOD CELLS 1. Neutrophils act as soldiers gaurding the body . They eat up invading microbes by phagocytosis.  2. Basophils secrete heparin which prevents coagulation of blood in the blood vessels. 3. Monocytes act as scavengers and eat up damaged and dead cells to keep the body clean. 4. Acidophils help in healing of...

c program for swap two numbers by two ways

We can write the c program for swap in two  ways: 1. by using only two variable, 2. by using three variable. In first we will discuss our first type program i.e. by using only two variable. in this program only two variables are used to swap two numbers, in order to write a program we need to build a logic and after that the program will run. 1.firstly try to solve this program on your own 2.after this try to understand the problem i.e. to swap two numbers 3.now build a logic between two numbers       a=1,b=2    if i write a=b & b=a this is WRONG  way. why this is wrong? A question comes in mind. This is due to the  reason that when a=b (means the value in b is assigned to a) then the value in a will vanish. Now when we wite b=a(means the value in a is assigned to b) but from the above line we came to know that the value of a is vanished and the the value which is in a is of b. so the proper way of making a relation betwee...