
Home » All posts
How To Make Message Boxes In Java

How To Use MDI In C#
How To Check USB Flash Drive's Performance

How To Keep JFrame Always On Top

Simple TinyURL API in Java

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

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.
How To Use TinyURL API In VB.NET
