0% found this document useful (0 votes)
20 views1 page

Java Core Basics Explained

Java is a high-level, object-oriented programming language known for its platform independence, allowing code to run on any system with a compatible JVM. The Java ecosystem includes the JDK for development, the JRE for running applications, and the JVM for executing bytecode. Java features primitive and non-primitive data types, control flow statements for program execution, and strong memory management with automatic garbage collection.

Uploaded by

abhinav.kumar
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views1 page

Java Core Basics Explained

Java is a high-level, object-oriented programming language known for its platform independence, allowing code to run on any system with a compatible JVM. The Java ecosystem includes the JDK for development, the JRE for running applications, and the JVM for executing bytecode. Java features primitive and non-primitive data types, control flow statements for program execution, and strong memory management with automatic garbage collection.

Uploaded by

abhinav.kumar
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Java Core Basics – Detailed Explanation

Java Fundamentals

Java is a high-level, object-oriented, and platform-independent programming language that was


originally developed by Sun Microsystems and is now maintained by Oracle. The core philosophy of
Java is 'Write Once, Run Anywhere', meaning that Java code compiled on one platform can run on
any other platform that has a compatible JVM. This is achieved by compiling Java source code into
bytecode, which is not machine-specific. Java is widely used in enterprise applications, mobile
development (Android), web applications, cloud systems, and distributed systems.

The Java ecosystem consists of three main components: JDK, JRE, and JVM. The Java
Development Kit (JDK) provides all tools required to develop Java applications, including the
compiler (javac), debugger, and standard libraries. The Java Runtime Environment (JRE) provides
libraries and files required to run Java applications. The Java Virtual Machine (JVM) is the heart of
Java, responsible for converting bytecode into machine code, managing memory, and handling
garbage collection.

Java supports two categories of data types: primitive and non-primitive. Primitive data types include
byte, short, int, long, float, double, char, and boolean. These data types store simple values and are
stored directly in memory. Non-primitive data types include classes, objects, arrays, interfaces, and
strings, which store references to memory locations.

Control flow statements in Java determine the execution order of statements in a program.
Conditional statements such as if, if-else, and switch allow decision-making. Looping statements
such as for, while, and do-while allow repeated execution of code blocks. Break and continue
statements provide additional control over loop execution.

Java follows a strong memory management model. Memory is divided into stack and heap. Local
variables and method calls are stored in the stack, while objects are stored in the heap. Java
provides automatic garbage collection, which removes unused objects from memory and prevents
memory leaks.

You might also like