Saturday, April 28

SSC CHSL 2011 FINAL RESULT DECLARED



SSC CHSL 2011 FINAL RESULT DECLARED..!!!!
To know the final result please  check the following links..
All the very best dear SSC aspirants..!!  :)



http://ssc.nic.in/press-release/CHSL2011-SL.pdf

http://ssc.nic.in/press-release/CHSL2011-SL.pdf

http://ssc.nic.in/press-release/CHSL2011-SL.pdf

Thursday, April 26

Know Kerala SSLC Results 2012 - Made easy



Please try these links to get Kerala SSLC Examination Results 2012..!!!!


1. http://www.keralapareekshabhavan.in
2. http://www.results.kerala.nic.in
3. http://www.keralaresults.nic.in
4. http://www.kerala.gov.in
5. http://www.prd.kerala.gov.in
6. http://www.results.itschool.gov.in
7. http://www.manoramaonline.com
8.http://www.mathrubhumi.com


To get the result in your Mobile send SMS in the format
sslc<space>registration number
to the number 537252  




> SSLC/THSLC Results 2012 - - Likely to be announced on 26.4.2012 at 11:30 AM.

> In addition to Kerala SSLC examination result of THSLC, Special Schools, AHSSLC results will be published along with Kerala SSLC results 2012.



Tuesday, April 17

How Top Companies got their Name


Secrets behind Top Company Names --


-ADOBE-

This came from name of the river Adobe Creek that ran behind the house of founder John Warnock..

-APPLE COMPUTERS-

It was the favorite fruit of founder Steve Jobs. He was three months late in filing a name for the business, and he threatened to call his company Apple Computers if the other colleagues didn't suggest a better name by 5 O'clock that evening..


-CISCO-

It is not an acronym as popularly believed. It is short for San Francisco..


-COMPAQ-

This name was formed by using COMp, for computer, and PAQ to denote a small integral object..


-COREL-

The name was derived from the founder's name Dr. Michael Cowpland. It stands for COwpland REsearchLaboratory..


-GOOGLE-

The name started as a joke boasting about the amount of information the search-engine would be able to search. It was originally named 'Googol', a word for the number represented by 1 followed by 100 zeros. After founders- Stanford graduate students Sergey Brin and Larry Page presented their project to an angel investor, they received a cheque made out to 'Google' ...thus the name..


-HOTMAIL-

Founder Jack Smith got the idea of accessing e-mail via the web from a computer anywhere in the world. When Sabeer Bhatia came up with the business plan for the mail service, he tried all kinds of names ending in 'mail' and finally settled for hotmail as it included the letters "html" - the programming language used to write web pages. It was initially referred to as HoTMaiL with selective uppercasing..


-HEWLETT PACKARD-

Bill Hewlett and Dave Packard tossed a coin to decide whether the company they founded would be called Hewlett-Packard or Packard-Hewlett..


-INTEL-

Bob Noyce and Gordon Moore wanted to name their new company 'Moore Noyce'but that was already trademarked by a hotel chain so they had to settle for an acronym of INTegrated ELectronics..

-
LOTUS (Notes)-

Mitch Kapoor got the name for his company from 'The Lotus Position' or 'Padmasana'. Kapoor used to be a teacher of Transcendental Meditation of Maharishi Mahesh Yogi..


-MICROSOFT-

Coined by Bill Gates to represent the company that was devoted to MICROcomputer SOFTware. Originally christened Micro-Soft, the '-' was removed later on..


-MOTOROLA-

Founder Paul Galvin came up with this name when his company started manufacturing radios for cars. The popular radio company at the time was called Victrola..


-ORACLE-

Larry Ellison and Bob Oats were working on a consulting project for the CIA (Central Intelligence Agency). The code name for the project was called Oracle (the CIA saw this as the system to give answers to all questions or something such). The project was designed to help use the newly written SQL code by IBM. The project eventually was terminated but Larry and Bob decided to finish what they started and bring it to the world. They kept the name Oracle and created the RDBMS engine. Later they kept the same name for the company..


-SONY-

It originated from the Latin word 'sonus' meaning sound, and 'sonny' a slang used by Americans to refer to a bright youngster..


-SUN-


Founded by four Stanford University buddies, SUN is the acronym for Stanford University Network. Andreas Bechtolsheim built a microcomputer; Vinod Khosla recruited him and Scott McNealy to manufacture computers based on it, and Bill Joy to develop a UNIX-based OS for the computer..

-
YAHOO!-

The word was invented by Jonathan Swift and used in his book 'Gulliver's Travels'. It represents a person who is repulsive in appearance and action and is barely human. Yahoo! Founders Jerry Yang and David Filo selected the name because they considered themselves yahoos..

Saturday, March 17

Concatenate strings without using library functions


#include<stdio.h>


main()
{
      char first[20], second[20],result[40];
      int i,j;
      printf("Enter first string:");
      gets(first);
      printf("Enter second string:");
      gets(second);
   for(i=0;first[i]!='\0';i++)result[i]=first[i];
   for(j=0;second[j]!='\0';i++,j++)result[i]=second[j];
      
      printf("%s",result);


      }

Concatenate strings using library functions



#include<stdio.h>
#include<string.h>
main()
{
      char first[20], second[20],result[40];
      int i,j;
      printf("Enter first string:");
      gets(first);
      printf("Enter second string:");
      gets(second);
    
      for(i=0;i<strlen(first);i++)result[i]=first[i];
      for(j=0;j<strlen(second);i++,j++)result[i]=second[j];
      result[i]='\0';
    
      printf("%s",result);
  
      }

Fibonacci series using Recursion ~ C program


Here is a C program which prints a Fibonacci series up to a limit using recursion.





#include<stdio.h>


void fibonacci(int a, int b,int count)


{
     printf("%d\t",a+b);
     if(--count) fibonacci(b,a+b,count);
}


void main()
{
     printf("Enter limit:");
     int count;
     scanf("%d", &count);
      printf("0\t 1\t");
     fibonacci(0,1,count-2);
   
     }
    

Saturday, February 18

Protect your Facebook account from getting Hacked

Hi friend, Here I'm posting  some ways to Protect your Facebook account from getting Hacked.
Protect your Facebook account from getting Hacked:
1.Use Strong Passwords:In order to keep your Facebook account From Getting Cracked with a Brute force,Dictionary or Rainbow tables you need to keep Strong password usually more than 10 letters or else it will be damn easy for the Hacker to Hack a Facbebook password..

2.
Use Phishing filter:Phishing filter is a sheild which protects you from Fake login pages,These fake login pages are made to steal your passwords and Phishing filter will prevent you from logging into these kinds of pages..

3.
Use a good Antivirus and Antispyware: Yes,this is the most crucial step in all the above mentioned,It is highly recommended that you use a Good antivirus and antispyware program,I would recommend Kaspersky as an antivirus and as an spyware spyware cease and dont forget to update them regularly,Remember one trojan takes it all..


4.
Use a Good antiloggerAntilogger is a program which lets you know if a keylogger is present on your computer,Keylogger is a spyware program which helps you track of what is happening on your Computer..

5.
Use a Good Firewall:
If you want to prevent a Hacker to enter in your Computer and Hack your Facebook password than you must use a good firewall,I personally Recommend Zonealaram firewall.Firewall is a Hindrance in Hacking,A hacker may bypass antivirus but its very difficult for a Hacker to bypass a Firewall..



Hope Methods will help you to prevent your Facebook account from getting hacked,It is highly recommended that you must follow all the above Methods to ensure maximum security.. :)



‎Four ways to hack the fb id..


1. Facebook phishing
2. Keylogging
3. Social engineering
4. Primary email address hack


1 Facebook phishing:


I have taken this method first because i think this is the most popular method/way of hackingfacebook. I studied various facebook surveys taken on web about hacking facebook. The results of these surveys show "Phishing" as the most used method to hack facebook and to note…"Phishing is favorite method of facebook hackers". So, friends.. beware of facebookPhishing. Facebook staff is working hard to avoid these Facebook phishers. Phishing not only allows you to hack Facebook but also almost any email account. You have to only get the trick used to make a phisher, which i think is very easy. I learnt it without any difficulty. But, remember, this is only for educational purpose..


2 Keylogging:


This is my second favorite, as only thing you have to do is remotely install a keylogger application (if you don't have any physical access to victim computer Keylogging becomes more easy if you have physical access to victim computer as only thing you have to do is install a keylogger and direct it to your destination so that it will send all recorded keystrokes to pointed destination. What a keylogger does is it records the keystrokes into a log file and then you can use these logs to get required Facebook password and thus can hack facebook password..


3. Social engineering:


This sounds to be pretty not working at beginning. Even I was neglecting this way. But, once, I thought of using it against my friend on orkut and i got his Facebook password very easily by this method. I think many of you might be knowing how what this social engg is. For newbies, social engineering is method of retrieving password or answer of security question simply be quering with the victim. You have to be very careful while using this as victim must not be aware of your intention. Just ask him cautiously using your logic..


4.Primary email address hack


If Facebook hacker, by some means, hacks your gmail or yahoo account which you are using as primary email address, then this Facebook hacker can easily hack your Facebook password using "Forgot password" trick. He will simply ask Facebook to send password reset email to your primary email address- which is already hacked. Thus, your Facebook account password will be reset and orkut account hacked.. !!!

There has some other metods for hacking..
Stealers
Session Hijacking
Sidejacking With Firesheep
Mobile Phone Hacking
DNS Spoofing
USB Hacking
Man In the Middle Attacks
Botnets

etc..


Assume  your Facebook Account  is Hacked!!! What to do now..??
It would be a Nightmare for anyone whose Facebook account gets Hacked,He would wonder How to get back his Hacked Facebook account,In this article i will tell you some methods through which you can Regain your Hacked Facebook account..

Steps to take when your Facebook account gets Hacked:

1.Reset Facebook Password with Secondary email address:When ever you sign up for a Facebook account,they ask for your Secondary email address,In case if you loose your Password you can reset it with your Secondary email address..


2.Secret Answer:
Yes you can also reset a Facebook password with a Secret Answer which you provided to the Facebook while Signing up For a Facebook account..

3.Contacting Facebook:
Lastly if Hacker has changed your Secondary Email address and Secret Question then you have only one way left i.e. Contacting Facebook team for the issue..!!!!! :)



HOPE THIS POST WAS HELPFUL TO YOU..
POST YOUR COMMENTS HERE..!!!!!