Primitive Data Types in Java
There are eight primitive data types in Java byte, short, int, long, char, float, double, and boolean. These can be put in four groups.
JavaBean Standards in Java
Today lets talk about Javabean Standards. JavaBeans are Java classes that have properties. For our purposes, think of properties as private instance variables.
Source File Declaration Rules in Java
Today lets see rules associated with declaring classes, import statements, and package statements in a source file. We can call them as declaration rules in Java.
Java Code Conventions: Best Practices for Clean and Readable Code
When it comes to writing Java code that is not only functional but also easily understandable by others (and your future self), adhering to code conventions is of paramount importance.
Java Legal Identifiers: Naming Conventions and Best Practices
In Java, legal identifiers are names used for various programming elements such as classes, variables, methods, and packages. These names serve as a way to identify and refer to these elements in your code.
What is a Jagged Array in Java
Java's jagged arrays, also known as ragged arrays, in this comprehensive tutorial. Learn to work with multi-dimensional arrays of varying sizes with practical examples and a provided code snippet for hands-on practice.
Multi Dimensional Arrays in Java
Multi Dimensional arrays in Java can be termed as arrays of arrays. We can create two-dimensional, three-dimensional, four-dimensional or n-dimensional arrays in Java. Its quite simple to create arrays in Java, yet more the dimensions more the confusion.
How to Return an Array Java
In Java, Arrays can be returned from the method. Again same as passing parameters two types of arrays are there. Array of primitive datatypes and the array of derived datatypes.
How to pass Array to method Java
Arrays can be passed as the parameter in Java. They are Passes-By-Reference which means when we pass the array copy of the objects are not passed just the reference of the array is passed. Arrays can be passed in two ways .
How to create Array of Objects Java
In Java, Array of objects java can hold the references to any type of Object. ARRAY CAN CONTAIN ONLY REFERENCES TO THE OBJECTS, BUT NOT THE OBJECTS ITSELF. Let us see Tutorial