Java

By manoj , 3 July, 2023

Spring and Spring Boot are both Java frameworks that are widely used for building enterprise-level applications. While they are related and share common features, there are some key differences between them.

By manoj , 6 March, 2023

Types of comments

There are the two types of comments in Java.

Single line comments :   #

multiline comments: /*  */  

By admin , 9 February, 2023
Let us first understand what is Statements in the computer programming language before going in depth into control statements..

A statement in a programming language is a single command or instruction that specifies some action to be performed by the computer. In other words, it's a unit of code that tells the computer what to do. Statements can range from simple commands like assigning a value to a variable, to complex logic structures such as if-else statements or loops.

By admin , 4 February, 2023

A package in Java is a rule used to group your related classes, interfaces and sub-packages.

A Java package organizes Java classes into namespaces, providing a unique namespace .

packages provides a good structure of the project incase  huge amount of classes and files.

There are two types of package