Home
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…
Read More- On
- By
- 0 Comment
- Categories: keyword, Python basic
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…
Read More- On
- By
- 0 Comment
- Categories: Keyword in C language
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…
Read More- On
- By
- 0 Comment
- Categories: Keyword in Java
The return keyword in Java programming language
The return keyword in Java programming language In this tutorial, we will discuss The return keyword in Java programming language The return keyword is typically used to end of the code or stop the execution of a method when its execution is completed and return value to the caller. In Java programming language, the return…
Read More- On
- By
- 1 Comment
- Categories: Keyword in Java
The new keyword in Java programming language
The new keyword in Java programming language In this tutorial, we will learn about the new keyword in Java programming language new is a keyword in Java which is used to create a Java object and allocate memory space in memory disk. new is also used for array creation. new keyword is used in many…
Read More- On
- By
- 0 Comment
- Categories: Keyword in Java
Usage of final in Java programming language
usage of final in Java programming language We will discuss in this tutorial about the usage of final in Java programming language final is a java keyword, it is used to restrict the user, When the variable is defined as final, you can not change the value of the final variable. So its constant The…
Read More- On
- By
- 0 Comment
- Categories: Keyword in Java
Usage of super in Java programming language
Usage of super in Java programming language In this tutorial, We will discuss Usage of super in Java programming language super is one of the Java keywords in Java. It is a reference variable mainly used to refer to objects in the immediate parent class. This keyword is used in various ways in Java. The super keyword is…
Read More- On
- By
- 0 Comment
- Categories: keyword, Keyword in Java
The enum keyword in Java programming language
The enum keyword in Java programming language We will discuss in this tutorial about the enum keyword in Java programming language In Java programming language enum is a keyword(Special type variable) that is used to declare a new enumeration type. This keyword is rarely used in Java. It is used to declare a collection of…
Read More- On
- By
- 0 Comment
- Categories: keyword, Keyword in Java
The class keyword in Java programming language
The class keyword in Java programming language We will describe in this tutorial about The class keyword in Java programming language In Java programming language, the class is a keyword in Java which is used to declare a new class which is a collection of related variables and methods the class is a very important…
Read More- On
- By
- 0 Comment
- Categories: Keyword in Java
The char keyword in Java programming language
The char keyword in Java programming language In this tutorial, we will discuss The char keyword in Java programming language The char is a keyword that is used to declare a variable as a type of character. In Java, a char variable represents a single (only one) character with enclosed single quote marks shown below….
Read More