coderz.py

Keep Coding Keep Cheering!

Data Types in Java

Data types are means to identify the type of data and associated operations of handling it. Java, like any other language, provides ways and facilities to handle different types of data by providing data types. Java data types are of two types: Primitive (or intrinsic) data types Reference data types Primitive data types come as […]

April 21, 2022 | Java | No comments

Escape Sequence

Java allows us to have certain non-graphic characters in character constants. (non-graphic characters are those which cannot be typed directly from the keyboard, e.g, backspace, tabs, carriage return, etc.). These characters are represented with the use of an escape sequence, which is represented by a backslash(\) followed by one or more characters. The following table […]

April 21, 2022 | Java | No comments

Literals in Java

Literals(often referred to as constants) are data items that are fixed data values. Java allows several kinds of literal: integer-literal floating-literal boolean-literal character-literal string-literal null-literal Integer Literal: Integer Literals are whole numbers without any fractional part. The method of writing integer constants has been specified in the following rule: An integer constant must have at […]

April 21, 2022 | Java | No comments

Identifiers

Identifiers are fundamental building blocks of a program and are used as the general terminology for the names given to different parts of the program viz. variables, objects, classes, functions, arrays, etc. Identifier forming rules of Java state the following: Identifiers can have alphabets, digits, and underscore and dollar sign characters. They must not be […]

April 21, 2022 | Java | No comments

Token and keywords

Token The smallest individual unit in a program is known as a token. In fact, every unit that makes a sentence is a token. Java has the following token: Keywords Identifiers Literals Punctuators Operators Keywords Keywords are the words that convey a special meaning to the language compiler. These are reserved for special purposes and […]

April 21, 2022 | Java | No comments

Simple Hello World Program

Requirement for Java Hello World Program: Install the JDK if you don’t have installed it, download the JDK and install it. Set path of the jdk/bin directory.Setting CLASSPATH in Java Create the Java program Compile and run the Java program Hello World Example: Save the above file as Hello.java. In the terminal: To compile: javac Hello.java To […]

April 19, 2022 | Java | No comments

JDK vs JRE vs JVM

Let us now compare Java Virtual Machine, JRE, and JDK. The following are the key distinctions between JDK, JRE, and JVM. Sr. No. Key JDK JRE JVM 1 Definition The Java Development Kit (JDK) is a software development kit for creating Java applications. JDK includes a number of development tools in addition to JRE (compilers, […]

April 19, 2022 | Java | No comments

Java Virtual Machine(JVM)

Programs written in Java are compiled into Java Byte code, which is then interpreted by a special Java Interpreter for a specific platform. Actually, this Java interpreter is known as the Java Virtual Machine(JVM). The machine language for the Java Virtual Machine is called Java byte code. The Java interpreter, when run on any machine, […]

April 17, 2022 | Java | No comments

Byte Code in Java

Byte Code: The Java byte code is a machine instruction for a Java processor chip called Java Virtual Machine. The byte code is independent of the computer system it has to run, i.e, Java programs are compiled, and their byte codes are produced. The byte codes are always the same irrespective of the computer system […]

April 15, 2022 | Java | No comments

Setting CLASSPATH in Java

In Java, you can set the CLASSPATH variable. CLASSPATH: Application ClassLoader uses CLASSPATH as an environment variable to locate and load .class files. The CLASSPATH specifies the location of third-party and user-defined classes that are not extensions or components of the Java platform. When setting the CLASSPATH, make sure to include all directories that contain […]

April 14, 2022 | Java | No comments

Advertisement