Usage of Static in Java programming language

Usage of Static in Java programming language In this tutorial, we will discuss Usage of Static in Java programming language In Java programming language,  Static keyword(reserve word) is used to memory management mainly. But “static” use a lot of ways in Java. Static can be applied in Java’s: fields(variable) , methods inner class and  nested…

Exception Handling in Java programming language

Exception Handling in Java programming language We will discuss in this tutorial about Exception Handling in Java programming language The Java Exception handling is the most useful mechanism for the programmer to handle the exception. the runtime error caused by Java exception. What is exception The exception is one of an abnormal condition of the…

While loop in Cpp programming language

While loop in Cpp programming language We will discuss in this tutorial about While loop in Cpp programming language Loops in Java In Java, there are three types of loops: for loop while loop do-while loop While loop in Cpp programming language While loop C++ while loop is used to execute statement(s) repeatedly until the…

The default keyword in Java programming language

The default keyword in Java programming language In this tutorial, we will discuss The default keyword in Java programming language The default is used in two ways in Java. The default is used to add a default ‘case’ in switch statements in Java The default is used to add default methods in interfaces since Java…

The volatile keyword in java programming language

The volatile keyword in java programming language In this tutorial, we will discuss The volatile keyword in Java programming language The volatile is a Java keyword, which is less known, less usage keyword. Volatile keyword is related to the visibility of variables when a number of thread are running concurrently. The keyword volatile is used…

While loop in Java programming language

While loop in Java programming language We will discuss in this tutorial about While loop in Java programming language Loops in Java In Java, there are three types of loops: for loop while loop do-while loop While loop in Java programming language While loop Java while loop is used to execute statement (s) repeatedly until the…

if statement in Java programming language

If statement in Java programming language In this tutorial, We discuss if statement in Java programming language In Java programming, “if statement” could be used to execute a section of code based a Boolean expression. when Boolean expression is true,  ‘if“  part will be executed. when it is false, then the flow of control will…

if statement in CPP programming language

In this tutorial, we will discuss about if statement in CPP programming language if statement in CPP programming Typically, if statement evaluates the particular condition inside the parenthesis. When the expression in the if statement is evaluated to be true, body part statements of if is executed. When the expression is evaluated to be false, the…

Keywords in Python programming language

Keywords in Python programming language In this tutorial, we will discuss Keywords in Python programming language. Key words are the reserved words in Python language Python is not allow use a keyword as a variable name or function name or any other identifier and – The and keyword is used when all condition of boolean expression…

Keywords in C programming language

Keywords in C programming language In this tutorial we will learn about Keywords in C programming language C language have a set of keyword (approximately 32 keyword) to write and expand C program. This is also known as reserved words. It already have with pre-defined and can not be used to a variable or other…