Tuesday, October 11, 2011

Earn regular income online

Hello,
I have something interesting for you - you can easily earn regular income online
It’s really amazing! You get paid to open & read the contents of emails. You also receive special discount coupons, promotions and free passes to various events in your city.
Join now and get Rs. 99 instantly, just for joining. What more, as a special bonus you get paid for inviting your friends also!
Create your PaisaLive Account & refer your friends to earn launch referral bonus on every new registration.
Use link to register youself
http://www.PaisaLive.com/register.asp?434140-966729.2
Get Paid to read emails

The Most Secure Android Phone, Ever

Germans have found a way to create super-secure virtual "work phones" on Android devices. This could become a new, competitive threat to the already beleaguered Research In Motion...


A new German project makes Android phones significantly more secure for business communications--this could change the way people use smartphones, entirely. The project, Bizztrust, creates virtual "work phones" on Android smartphones, and employs BlackBerry-style encryption to guarantee secure communications. The new product has the potential to create headaches for Research In Motion (RIM), which uses security as a major selling point for BlackBerrys.

Monday, October 10, 2011

Computer virus hits US drone station

Los Angeles: A stubborn computer virus has reportedly hit the US Nevada control station that remotely pilot US military drone aircraft on missions in Afghanistan and other war zones, Xinhua reported. The virus has infected the cockpits of American Predator and Reaper drones, logging pilots' every keystroke.
According to Wired magazine, the virus, first detected about two weeks ago by the military's Host-Based Security System, has not prevented pilots at Creech Air Force Base in Nevada from flying their missions overseas. However, the virus has proven very difficult to eradicate. "We keep wiping it off, and it keeps coming back," <>iWired quoted a source as saying. "We think it's benign. But we just don't know."
The virus has infected both classified and unclassified machines at the base, but it was reported that no classified information has been lost or transmitted outside, the report said Friday. The US uses the unmanned aircraft to conduct surveillance and carry out strikes on enemy targets. They are used particularly in remote and mountainous areas of Afghanistan, Pakistan and Yemen. The affected US drones used to kill Anwar al-Awlaki and other Al Qaeda chiefs.
In 2009, US forces discovered drone footage on the laptops of Iraqi insurgents, Wired said. The incident has again sounded an alarm on US military network security.

Prime number using recursive function

    #include<stdio.h>
    #include<conio.h>
    void main()
    {
    int num,n;
    int prime(int);
    clrscr();
    printf("Enter a number to check prime or not ");
    scanf("%d",&num);
    n=prime(num);
    if(n==0)
        {
        printf("Not prime");
        }
        else
        if((n!=0)||(n<0)||(n>0))
        {
    printf("Prime");
    }
    getch();
    }

    prime(int num)
    {
    static int x=2;
    if((x==num/2) || (num%x==0))
    return num%x;
    else
    {
    x=x+1;
    return prime(num);
    }
    }

Solving QUARDITC Equcation in c

#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int a,b,c,d,e,f,g;
clrscr();
printf("Enter the three values\n");
scanf("%d %d %d",&a,&b,&c);
d=((b*b)-(4*a*c));
if(d==0)
{
printf("Roots are real and equal\n");

A trick to create an undeleatable and secure folder

A simple trick to Create an Secure and NOT deletable folder to hide your data on  your own system
try it

I AM USING MY F:\ DRIVE FOR THIS DEMONSTRATION 
--->>CREATE A FOLDER IN F:\ DRIVE NAMED DEMO
NOW START DOS AND TYPE COMMAND ONE BYE ONE
 "changing the default drive path to f"


C:\USER\ADMIN>F:  
F:\> CACLS DEMO /E  /C  /D %username%