Friday, January 27

Results- SSC CHSL - Combined Higher Secondary Examination

  Hello, SSC (STAFF SELECTION COMMISSION ) has announced the results for Combined Higher Secondary Examination (CHSL) held on 4th&11thDecember 2011 for recruitment to the post of Data Entry Operators and Lower Division Clerks at various centers all over the country. To see the results for LDC category  CLICK HERE..!!! To see the results for DEO category  CLICK HERE..!!! If you have any doubts or queries, feel free to comment it here.!!! Anyway, all the important details regarding results are provided below.  Totally, 20168 candidates qualified provisionally for typing test for LDC and 10639 candidates for skill test...

Sunday, January 22

Get a search engine in your own name..!!!!

Hi friend, In this post I will tell you about a facebook application that can generate a search engine in your own name. Just imagine, a search engine that can respond to all your queries , with google outlook, and with your cute name.. Wow.. great.. isn't it??? You too can make a search engine like this in simple steps. But,you need a facebook account as it is a facebook application. Go to   http://apps.facebook.com/mynamesearch/ Follow a few steps. That's it..!!!!!!!  :) Did you like this trick?? Comment your response here.. Thanking you!!!...

Saturday, January 21

Convert Decimal Number to Binary Equivalent Using Linked list - C

Hi friends,           In this post I'll explain "how  to convert a decimal number to binary equivalent using Linked list". Usually, we use array for this purpose, but arrays are created statically and memory wastage  may occur. Linked list is a  perfect solution for this as it is created dynamically and no there is no wastage of memory also.!!!! Algorithm Initialize PREV_NODE and NODE as NULL. Input a number 'num'. if num<=0 go to step 9 PREV_NODE=NODE add (num%2) to NODE->number NODE->next=PREV_NODE num=num/2 go to step 3 if NODE is NULL go to...

How to Remove Shortcut Arrow on Desktop Icons in Windows 7

Howdy guys, It is true that sometimes the arrow present in shortcut icons seem irritating, especially when they are on your cute desktop.  In this post, I'll explain how to Hide and Remove Shortcut Arrow from Desktop Icons and Other Icons. 1.Run Registry Editor (RegEdit).2.Navigate to the following registry key:  HKEY_CLASSES_ROOT\lnkfile 3.Delete the IsShortcut registry value in the right pane.   Tip: It’s also workable to just rename the IsShortcut registry entry to another name, such as IsNotShortcut. 4.Some other type of documents and files may be shortcut arrow on their icons too. To remove the shortcut...

Do you know, every SIM CARD has a name ?? Try this !! 1st step : from your number take the last ... 3 numbers, ex :: 050995567, take "567"only 2nd step: do this @*[567:0] 3rd step : remove the sign * And press enter in the comment box! :P

Do you know, every SIM CARD has aname ??Try this !! 1st step : from your number take the last... 3 numbers, ex :: 050995567, take"567"only 2nd step: do this @*[567:0] 3rd step : remove the sign * And press enter in the comment box! :P Hi friend,  This is one of the widespreading rumour in facebook that every sim card has its own name. Is it true??? How on doing this cute name appears? Dude, I will explain in this post what is actually  behind this magic. First of all, your SIM card has no name at all..!!!!!! Then, how this magic happens?  Lets have look. 1. For every facebook account, there will be a unique number...

Monday, January 16

COMPRESS A FILE INTO .gz FILE ~ COMPLETE JAVA CODE

Hello friends, In this post I’m presenting a java code to compress a file into -.gz format. Hope this will be useful to you..!!! Algorithm1.      1.Input the name of the file to be zipped. 2.      Create an OutputStream in the name of given _file.gz. 3.      Point it to the GZIPOutputStream. 4.       Read from the file to be zipped, bytewise, and write it into GZIPOutputStream. import java.io.*;import java.util.zip.*;public class CompressFile {public static void compresser(String temp) {try {File file = new File(temp);FileOutputStream...
Page 1 of 3012345Next