Variable`s in java
Before you use a variable in java, you must declare it, specifying its data type. The int types is only
Read moreBefore you use a variable in java, you must declare it, specifying its data type. The int types is only
Read morewhen you are writing java code, you should know that java reserves certain words for itself as part of the
Read moreJava supports three types of comments, two of which are taken from C++. you can surround a comment of any
Read moreThe main method has one line of code in it: public class name { public static void main(String[] args) System.out.println(“linux”);}
Read moreHere`s the next line of code. public class abc { public static void main(String[] args) {……}} Whats happening here is
Read morepublic class abc {……} This line indicates that we are creating a new java class named abc. After we translate
Read morepublic class app { public static void main(String[] args) { System.out.println(“Hello world”); } } If you are new to Java,
Read moreJ2EE (Java 2 Platform, Enterprise Edition) is a platform-independent, java-centric environment from sun for developing, building and online deployment of
Read moreJSP Java Server Page (JSP) technology allow web developers and designers to rapidly develop and easily maintain, information-rich, dynamic web
Read moreJ2ME J2ME (java 2 mobile edition), a java-based runtime platform created by sun microsystems, allows java application to run on
Read more