How To Backup Windows Drivers And Restore When Needed

Free Driver Free Driver Backup is a driver backup utility, it offers solution for drivers' backup and restoration in Windows. It identifies all the hardware within the system, extracts their associated drivers from the disc and backs them up to a secure location. Then, you'll use it to stop any issues if your Windows crashes, I found the concept terribly helpful.

How To Make Message Boxes In Java

Message boxes are used to display alerts and information messages to the user. It’s very easy to make Message Boxes in .NET languages, however in Java programming language it’s not very easy like in vb/c#. In Java we can use JOptionPane to display messages.

How To Use MDI In C#

An MDI(Multiple Document Interface) is a graphical user interface within which multiple windows reside below one parent window. The opposite words of MDI are SDI(Single Document Interface) and TDI(Tabbed Document Interface).

How To Check USB Flash Drive's Performance

USB Drive'sOne of the main worrying factor in your computer components is whether or not the performance are up to the mark. The component manufacturer don’t put the real performance in my experience so we can’t believe what they say we just need to test them on our own. Coming to the point; If you have already checked your USB Flash Drive’s performance or not, you should try USBFlashSpeed, USBFlashSpeed can measure a Flash Drive’s Read and Write speeds, also allows you to publish the results to their website(The mission of this website is to benchmark all USB Flash drives over the world).

How To Keep JFrame Always On Top

Always On Top : It’s something that keeps the window on top, you might have seen in some programs they have a menu strip item called Always On Top when you enable it, it will keep the window on top most. You might have seen in Visual Basic or Visual C-Sharp they have a property for that in Form properties so you don’t need to write codes for that but in Java you all know that they neither have a official IDE nor a well advanced 3rd party IDE such as Visual Studio.

Simple TinyURL API in Java

I have been off for sometime for some issues anyway today we are going to see how to use TinyURL API in Java programming language.Well, to be honest theres nothing so serious I have imported Scanner to input, of course the GET request and some more to handle the exceptions and so. I'd like to say that I like console based(CLI) applications more than GUI so I don't bother about forms and others.

How Java Works

In Java programming language, all source code is written first in plain text files ending with the .java extension. Those source files are then compiled into .class files by the java compiler. A .class file doesn't contain code that is native to your processor, it instead contains bytecodes. Bytecode is the machine language of Java Virtual Machine(Java VM). The Java launcher tool then runs your program with an instance of the Java Virtual Machine.

C# - Operators and Expressions

Operators are used to process the data. Expressions are created by combining the operators with variables and constants.

For example:

int number1, number2, sum;
number1 = 10;
number2 = 20;
sum = number1 + number2;

 In the last statement, two variables using the + symbol. The + is a operator also there are many operators in c#.

Data Types and Variables

 

A data type specifies whether or not a variable can store a number, a single character or text. Variables are names given to the memory location for storing data. Data Types are used to specify the types of values related to variables.