Author: Rabecca Fatima
-
PythonRelational & Logical Operators in Python
In Python, operators are specialized symbols that perform different computations. To create an expression, we combine operators and operands. Expressions…
December 2, 2022
-
PythonPython – if, elif, else Conditions
Python’s conditional statements carry out various calculations or operations according to whether a particular Boolean constraint evaluates to true or…
December 3, 2022
-
C++Program to check Palindrome string
A string is said to be a palindrome if the reverse of the string is the same as the string….
December 3, 2022
-
C++Program To Perform All Arithmetic Operations Using Functions
For two variables entered by the user, we must create separate functions for addition, subtraction, division, and multiplication. Program Code:…
December 5, 2022
-
PythonLoops in Python
There may be times when you need to execute a block of code several times. A loop statement allows us…
December 5, 2022
-
PythonUser-Defined Functions in Python
A function is a collection of statements that accept input, perform some specific computation, and return output. The idea is…
December 6, 2022
-
PythonObject-Oriented Programming in Python
What Is Object-Oriented Programming? Alan Kay coined the term “Object-Oriented Programming” (OOP), also known as oops concepts in Python, in…
December 8, 2022
-
PythonPython Class
As we discussed in the previous tutorial, a class is a virtual entity that can be thought of as an…
December 8, 2022
-
C++Program To find Average Of Array
In this program, we will learn about taking integer input from the user and storing it in the array. Then…
December 8, 2022
-
PythonConstructor in Python
What is a Constructor? A constructor is a special method (function) used to initialize the class’s instance members. The main goal…
December 9, 2022
-
PythonDestructors in Python
When an object is destroyed, the destructors are called. Destructors are not as necessary in Python as they are in…
December 12, 2022
-
PythonInheritance in Python
Inheritance is a fundamental idea in object-oriented programming (OOP) languages. By deriving a class from another class, you can use…
December 12, 2022