Naming Conventions in Java

Naming Conventions in Java refers to the guidelines that application developers are expected to follow so that they can produce consistent and readable code throughout the application. 1. Basic Naming convention standards To declare variables, constants, methods, classes, interfaces, etc use full descriptors. like customerId, firstName, lastName, etc. 2. Naming Packages The guideline for Package … Read more

JVM | Java Virtual Machine

What is JVM? JVM is a program or Virtual Machine that provides a run-time environment in which Java bytecode can be executed. JVMs are available for many software and hardware platforms. The same bytecode can be used on all JVMs for all platforms which makes Java platform independent. JVM diagram: JVM details: 1. Class loader … Read more

Features of Java | New Java Features

Java language has many useful features but the primary goal behind its (Java) creation was to enhance the portability and security of a computer language. Please find all important Java features below. Java features: 1. Familiar: Java is familiar because its syntax is based on C++. 2. Simple and Easy: Java is easy to learn … Read more