Variables / Fields in Java // Declaring VariablesBefore using any variable, give it a name and data type. This is known as declaring a variable. The syntax for declaring a variable is dataType indentifier;...
Saturday, 18 February 2017
Operators in Java
Operators in Java // In my previous article i explained, how to declare and initialize variables. In this article, i will explain how to perform different operations on them. Java operators are special...
Type Casting in Java
Type Casting in Java // This tutorial covers only primitive data type casting which explains converting a value of type double to an int or an int to a double. Casting Object / reference variable...
HTML5 - An Introduction
HTML5 - An Introduction // HTML5 is the fifth version and latest standard from W3C. It is not just confined to a mark up language, infact HTML5 is the combination of HTML5 elements, CSS3 style and JavaScript...
Strings in Java
Strings in Java // Strings Representing a set of characters altogether, we can define the data type String is used. For example, Following line declares and initialize a String has an initial value...