Java Basics
- 30 April
Top 20 Java Projects for Beginners
This tutorial provides the top 20 java projects for beginners for practice. These projects will help you to learn java quickly and efficiently.
- 08 March
How to end program in java
Ho In this post, we will see how to end program in java. You can use System.exit(0) to end program in java. Using System.exit() to end java program You can use exit() method of System class to end java program. System.exit() causes Java virtual machine to exit and terminate the current process. You can call […]
- 25 September
Reference Variable in Java
In this post, we will see about Reference variable in java. Reference variable A variable that holds reference of an object is called a reference variable. Variable is a name that is used to hold a value of any type during program execution. If the type is an object, then the variable is called reference […]
- 26 March
Global variables in java
In this post, we will see how to define global variables in java. Unlike C/C++, there are no standard global variables in java but you can still define global variables that can be used across all classes. Global variables are those variables that can be accessed across all the classes. Java does not support global […]
- 26 March
Static block in java
In this post, we will see about how to implement static block in java. Here are some important points about static block in java. Static block is used for static initializations of a class Static block is executed only once when either you create an object of the class or access static member of the […]
- 26 August
Java default constructor
In this post, we will see about Java default constructor. Default constructor is the no arg constructor which is inserted by compiler unless you provide any other constructor explicitly. You won’t able to see it as it is present in class file rather than source file. Is there any difference between no argument constructor and […]
- 17 June
How to learn Java Programming
Java is one of the most used programming languages in the world for developing the desktop application and web application.It has completed 22 years in the programming world. In this post, we will see how to learn java programming in depth and in most efficient way. Java has a huge learning curve, it is a […]
- 28 May
Introduction to Java Programming Language
Introduction Java is a programming language and computing platform which serves as a general-purpose language for developers to create modular programs and reusable code. With its Write Once Run Anywhere principle, Java is now of the most widely used and recommended programming language for developing desktop as well as web applications in today’s digitized world. […]
- 28 May
Java Hello World Program
Introduction In this post, we will see how to write your first java program. This post is intended only for java beginners to acquaint them with the steps to write a simple java program. Simply put, we will write a code that outputs "Hello World!" to your console/screen. For Folks having some knowledge in other […]