While loop in Python programming language

While loop in Python programming language In this tutorial, we will discuss While loop in Python programming language A while loop in Python programming language executes a target statement repeatedly until satisfaction or test expression is true. Declaration The syntax of while loop The syntax of while loop in Python programming language is given below:…

Function in Python programming language

Function in Python programming language In this tutorial, we will discuss the function in Python programming language. Functions of Python are a collection of related and reusable statements under a single unit. They are used to perform a specific task and only run when they are called – similar to a method in Java Basically,…

Interface in Java programming language

interface in Java programming language In this tutorial, we will learn  about the interface in Java programming language An interface in Java is similar to a class but it is not a class. interface keyword is used to create an interface in Java. An interface is an OOP concept and a technique to achieve abstraction….

Abstract class in Java programming language

Abstract class in Java programming language Abstract class In this tutorial, we will discuss Abstract class in Java programming language In Java programming language, Abstraction is one of the OOP concepts. A class that is declared as abstract is called as an abstract class. The abstract class can have abstract and non-abstract methods   Why…

Method overriding in Java programming language

Method overriding in Java programming language We already (Earlier tutorial) had a look at as method overloading in Java. In this tutorial, we will learn about Method overriding in Java programming language. When the derived(sub class) class has a method in the same name as the parent class (super class), it is called method overriding. Method…

Nested for loop in C programming language

Nested for loop in C programming language In this tutorial, we will learn about Nested for loop in C programming language Already, we discussed for loop in an earlier blog post. In the C programming language,  for loop inside another for loop is known as nested for loop. Nested for loop can contain more than…

While loop in C programming language

While loop in C programming language In this tutorial, We will discuss While loop in C programming language. Typically, in programming languages, looping statements are used to perform repetitive statements until a specific condition is met in a block of code. C program having three basic looping statements for loop  in C while loop in…

Nested while loop in C programming language

Nested while loop in C programming language In this tutorial, We will learn  about Nested while loop in C programming language In C programming language, while loop inside another while loop is known as nested while loop. In nested while loop one or more statements can be included in the body of the loop. Declaration…

Encapsulation in Java programming language

Encapsulation in Java programming language In this tutorial, we will discuss Encapsulation in Java programming language. Concept of Encapsulation Encapsulation is one of the most important OOP concepts in Java similar C++ and Python. Other  Oop concepts are inheritance, Polymorphism and Abstraction Encapsulation is used for security purpose. It binds data members and methods into…

String handling in Python programming language

String handling in Python programming language In this tutorial, we will learn about String handling in Python programming language String in Python In python language, the string is a set of character set in a particular order. The string can have more than one character and space. we can manipulate the string in many ways,…