Tuesday 1 October 2013

Increase Your Website Traffic

Basic SEO Methods


  • Attractive Design and Layouts
  • Relevant File names
  • Optimized keywords
  • Optimized meta tags 
  • Title Optimization
  • Content is the king
  • Link Building
  • Misc Techniques    

For More Details Click Here....



Wednesday 12 June 2013

DVD's can detect HIV

A team led by Aman Russom of the KTH Royal Institute of Technology in Sweden has demonstrated proof of concept for the tool by testing for HIV.

Blood samples are loaded into micro-channels on a modified, semi-transparent DVD disc and scanned by a DVD reader, which has been adapted to detect light transmitted through the disc. The image can then be visualised on a computer screen.

The so-called "Lab-on-DVD" technology makes it possible to complete an HIV test in just a few minutes, he said.
In a proof of concept demonstration, the researchers collected cell-type CD4 + from blood and visualised it using the DVD reader technology, DVD LSM.
Enumeration of these cells using flow cytometry is now standard in HIV testing, but the practise has been limited in developing countries. Russom says DVD-based technology will provide an attractive option.
The Lab-on-DVD reaps 30 years of research and development on optical storage technology to create an alternative to flow cytometry, the standard equipment for hospitals.

The low cost of the technology makes it suitable as a diagnostic and analytical tool in clinical practise close to the patient.

Monday 10 June 2013

Intel launches fourth generation processors

Intel introduced its ground-breaking 4th generation Intel Core Processor

Fourth generation processors offer the most significant gain in battery life enabling ever achieved by Intel, up to double the graphics and significant CPU performance improvements that are delivering exciting new consumer experiences.



The processor will be immediately available for innovative desktops PCs and mobile work stations. Future availability is planned for Ultrabooks and tablet devices.

For more details click here...

Friday 1 June 2012

PROGRAM TO SWAP 2 VALUES USING POINTER


#include<stdio.h>
#include<conio.h>
void main()
            {
            int a,b,*p,*q,t;
            clrscr();
            printf("Enter the values of A and B: ");
            scanf("%d%d",&a,&b);
            printf("\nA=%d\nB=%d",a,b);
            p=&a;
            q=&b;
            t=*p;
            *p=*q;
            *q=t;
            printf("\n\nSwapped numbers \n");
            printf("\nA=%d\nB=%d",a,b);
            getch();
            }


OutPut
  ---------
Enter the values of A and B: 2 5

A=8
B=3

Swapped numbers

A=3
B=8

Tuesday 29 May 2012

BSNL 4g- Wimax

BSNL broadband offers its new BSNL Wimax plan for wireless connectivity of internet. The BSNL WiMax network plan is capable of providing internet speed around 33 mbps.






For Tariff Details.....http://www.kerala.bsnl.co.in/Wimax/wimaxtariff61010.pdf

Monday 21 May 2012

C-PROGRAM TO PRINT THE SALARY SHEET


#include<stdio.h>
#include<conio.h>
struct employ
            {
            char name[20];
            int id,bp;
            float tot,hra,dr;
            };
void main()
            {
            struct employ list[20],temp;
            char name[30];
            int n,i,j,m;
            clrscr();
            printf("Enter the number of employees: ");
            scanf("%d",&n);
            for(i=0;i<n;i++)
                        {
                        printf("\nEnter the name of employee: ");
                        scanf("%s",list[i].name);
                        printf("\nEnter id number: ");
                        scanf("%d",&list[i].id);
                        printf("\nEnter the basic pay: ");
                        scanf("%d",&list[i].bp);
                        list[i].dr=.2*list[i].bp;
                        list[i].hra=.6*list[i].bp;
                        list[i].tot=list[i].dr +list[i].hra+list[i].bp;
                        }
            for(i=0;i<n;i++)
                        {
                        for(j=0;j<n-i-1;j++)
                                    {
                                    if(strcmp(list[j].name,list[j+1].name)>0)
                                                {
                                                temp=list[j];
                                                list[j]=list[j+1];
                                                list[j+1]=temp;
                                                }
                                    }
                        }
            printf("Salary Sheet is\n");
            printf("NAME   ID NO   BASIC PAY   SALARY\n\n");
            for(i=0;i<n;i++)
                        printf("%s\t%d\t%d\t%f\n",list[i].name,list[i].id,list[i].bp,list[i].tot);
            getch();
            }


/* OutPut
   ---------
Enter the number of employees:2
Enter the name of employee: manu
Enter id number: 101
Enter the basic pay: 4000
Enter the name of employee: mani
Enter id number: 201
Enter the basic pay: 6000 
 
Salary Sheet is
NAME   ID NO   BASIC PAY   SALARY

mani    201     6000    10800.000
manu    101     4000    7200.000