Java pass by reference
Is java pass by reference? The answer is NO. Java is always pass-by-value. Today we will learn java pass by reference and java pass…
Is java pass by reference? The answer is NO. Java is always pass-by-value. Today we will learn java pass by reference and java pass…
Today we will learn, What is a NullPointerException, and how do I fix it? So, let’s start: What is NullPointException…
Operator are those who performs an action, for example + is an arithmetic operator that perform addition. They are various types…
In Java, data types refer to the type of data that can be stored in variables. Because Java is a…
A variable is a term that refers to a value that can be changed in the future. When I put int i=10,…
We’ll learn how to write our first Java program throughout this post. This article is only for java beginners. hello…
Table of contents What is JDKFeatures of JDKWhat is JREFeatures of JREWhat is JVMMain Task of JVMFeatures of JVM What…
Java is one of the most used programming languages in the world for developing desktop application and web application. What…
Serialization Serialization allows to convert an object to a stream, for sending that object over the network OR Save to file…
Hi, This is a common problem when you want to run a java program using the command line. The problem…
NullPointException NullPointException is a RunTimeException. NullPointException is thrown when the value of a reference variable or object is null. How…
IOException In Java, IOException is one of the most common Exceptions when the program operates between input and output.IOException is used for input…
Exception Handling in Java is a powerful mechanism. Exception handling is done to handle the run time error of the program…
Binding (or wrapping) code and data together into a single unit are known as encapsulation. For example, a capsule is…
Hiding internal details and showing functionality is known as abstraction. For example phone call, we don't know the internal processing.…
If one task is performed in different ways, it is known as polymorphism. For example: to convince the customer differently,…
We will one of the most important concept of JAVA OOP is java inheritance. When one object acquires all the…
In this article, we will learn about objects and classes with real-life examples. Java objects and classes are the main…
Hello guys! In this tutorial, we have figure out the getters and setters method and their features in Java. We…
Today, we will learn the fundamentals of Object Oriented programming programming. First of all, we have to know the meaning…