Recent content by utkarsh73

  1. utkarsh73

    A portable and sturdy laptop for 40K

    I am looking for a notebook under 40,000 for programming and heavy multitasking. The build quality and portability(light weight) of the laptop are of top priority though portability can be compromised a bit. 1) What is your budget? : 40K Max. 2) What size & weight consideration (if any)...
  2. utkarsh73

    [Praise] Western Digital External Hard Disk RMA quite a bumpy ride but nice ending!!

    but remember to backup the data before they arrive....
  3. utkarsh73

    [Praise] Western Digital External Hard Disk RMA quite a bumpy ride but nice ending!!

    My 1 TB WD My Passport Essentials SE got bad sectors after a year of purchase so I created an RMA online and pickup was arranged by WD for 4th july. After the hard drive reached their service center, there was no response from them for 10 days, so I called them and they reported they currently...
  4. utkarsh73

    How to proceed & prepare for OCPJP exam?

    I have been familiar with Java for a while now and I m looking forward to take the OCPJP certification exam. Please guide me about the books and materials needed to pass the certification exam. I have completed Head First Java and have a good grasp on most of the topics covered in the book...
  5. utkarsh73

    External Hard disk not showing in Explorer

    HDTune crashes as soon as I select my external drive in the drop-down menu. It seems that the file-system has been changed to RAW. I tried recuva and easeUS data recovery but both of them were unable to do the job. Any idea on how to recover files from a RAW partition???
  6. utkarsh73

    External Hard disk not showing in Explorer

    My external hard disk WD My Passport Essentials SE USB 3.0 1 TB is not being shown in the My Computer window. It gets detected by the OS and the notification sound for hardware plugging and unplugging can be heard, but it does not allows me to access the disk. I did the following things:- 1...
  7. utkarsh73

    Problem in MySQL 5.5

    Sorry for the late reply. I was away from internet for the last four days. Where exactly do we type these commands?? I tried it in command prompt and in 'run' but didn't worked. Anyways, The problem is solved now, thanks for the reply. I started the MySQL workbench and started the server in...
  8. utkarsh73

    Problem in MySQL 5.5

    I just started learning very basic SQL queries yesterday and installed MySQL 5.5 client on my PC. While installing, the software asked for a root password. Everything was fine yesterday and I made a few databases and tables. But today when I started the command-line client and entered my...
  9. utkarsh73

    Your Gaming Backlog/Progress Report!

    Flipkart has two different version of Splinter Cell Conviction listed on the site. One is "Splinter Cell Conviction Complete" Splinter Cell: Conviction Complete -: Flipkart.com for Rs 269 and other is just "Splinter Cell Conviction" Tom Clancy's: Splinter Cell Conviction -: Flipkart.com for...
  10. utkarsh73

    Suggest Me a Game [PC]

    Splinter Cell: Conviction is available on flipkart for Rs. 269 and I am planning to get it. How is the multiplayer part of the game?? Is the game still active or will it be a hard time finding players online?? Anyone here active ???
  11. utkarsh73

    Just Cause 2

    Shift key only provides the throttle. Press the Down arrow key to raise the altitude of the plane while approaching the end of the runway.
  12. utkarsh73

    Java Queries Here..

    The two codes are completely separate from each other. The 'run()' method in the second code actually provides the definition of the abstract method 'run()' declared in the Runnable interface(Inbuilt interface java.lang.Runnable). threadJob reference is passed as an argument to the...
  13. utkarsh73

    Java Queries Here..

    Ok, I get it. But this part I don't understand. what unique objects are u saying?? I have no idea what this means.
  14. utkarsh73

    Java Queries Here..

    I see these two very different ways of creating a new thread in Java: 1) We 'extend' the 'Thread' class and override its 'run()' method in the subclass: class NewThread extends Thread{ public void run(){ System.out.println("Child Thread!"); } } class ThreadTest{...
Top Bottom