Installing Java
Here you are with your computer and you can’t wait to start writing Java applications. But first, you need to
Read moreHere you are with your computer and you can’t wait to start writing Java applications. But first, you need to
Read moreJava is robust because: It uses strong memory management. There is a lack of pointers that avoids security problems. There is automatic garbage
Read moreReactJS is an open-source, component based front end library responsible only for the view layer of the application. It is
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 more