-
Today I woke up to the fact that – Microsoft Excel can store only 65,536 rows per sheet.Exporting data from any other tool like TOAD,…
-
TO_CHAR(date column to format , ‘DD-Mon-YYYY’) = ’10-May-2008′ THis function comes handy to do quick date comparisions.
-
public class SwapVariables{ public static void main(String args[]) { int a=5; int b= 6; System.out.println(“Before Swap :”+a+” “+b); a=a+b; b=a-b; a=a-b; System.out.println(“After Swap :”+a+” “+b);…
-
Found about FizzBuzz problem here I wrote Java program for it in 6 minutes including testing and debugging. [ Yes 🙁 I didn’t get it…
-
“It is not the critic who counts, not the man who points out how the strong man stumbles or where the doer of deeds could…
-
“Many people are like garbage trucks. They run around full of garbage, full of frustration, full of anger, and full of disappointment. As their garbage…
-
The following piece of text is produced as it is from one of my company blogs.I am very thankful to its presenter. To laugh is…
-
Till date, I installed Java software hundreds of times.Even then I have to spend sometime(though very few minutes) troubleshooting and I don’t get it correct…
-
This didnt seem to be a good idea counting all the experiences we had in the past 7 months of our stay.True that it is…
-
<script language=”javascript” type=”text/javascript”> document.onkeypress= resetTimer document.onmousemove= resetTimer document.onmousedown= resetTimer document.Onfocus= resetTimer var timerId; timerId = window.setTimeout(“timeOut()”,7200000); function resetTimer() { window.clearTimeout(timerId); timerId = window.setTimeout(“timeOut()”,7200000); } function…