WHAT'S NEW?
Loading...

Give online test

We can give online test on C,C#,C++,Java,General Knowledge,Interview technique,Our world etc.

Just visit http://www.indiabix.com

How to fast up ur shutdown speed

We can shutdown our pc in 5 seconds only. Just do following: Press alt+ctrl+del button,it will open task manager Then press alt+u It will pop-up a list. Then go on 'Turn Off' Press ctrl and click on that 'Turn Off' button

How to enable/disable task manager

Goto start ->run ->cmd ->type the follwing text there REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Poliicies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f if we put 1 instead of 0.The task manager will be disabled.

String Reverse in Java


//WAP for string reverse

class strrev
{

 public static void main(String args[])
 {
  
  StringBuffer s=new StringBuffer("RAdaR");

  s.reverse();

  System.out.println("Reversed String :\t"+s);

 }

}