If-else Statement March 05, 2021Java if-else Statement T he Java if statement is used to test the condition. It checks boolean condition: true or false . There are ...Read More
Read Value March 05, 2021 Let's How to read value in a variable import java.util.* ; public class takingInput { public static void main (String [] args) ...Read More
Types Of Variables March 05, 2021Variable Variable is name of reserved area allocated in memory . In other words, it is a name of memory location . It is a combination of...Read More
Inheritance October 14, 2020 Inheritance can be defined as the process where one class acquires the properties (methods and fields) of another. With the use of inherit...Read More
Constructor October 05, 2020A constructor in Java is a special method that is used to initialize objects. The constructor is called when an object of a class is creat...Read More
Static Keyword October 03, 2020In Java , static keyword is mainly used for memory management. It can be used with variables, methods, blocks and nested classes. It is a...Read More
myFirstProgram October 02, 2020 class hello{ public static void main(String []args) // compulsory Syntax { System.out.println("Hello, We are...Read More