Author: Rabecca Fatima
-
PythonPython Syntax Rules & Hello World Program
Python Syntax Rules: Here are a few things you should know beforehand: Python is case-sensitive, which means, for example, Name and name have different…
November 12, 2022
-
PythonPython Mathematical Operators
Mathematical Operators: Mathematical Operators are used in mathematics to perform operations such as addition, subtraction, multiplication, and division. Python has…
November 13, 2022
-
PythonMath Functions in Python
Python allows us to perform a variety of mathematical operations with ease by importing a module called “math,” which is…
November 13, 2022
-
PythonPython operators
What are Python operators? Python operators are used to perform operations on values and variables in general. These are standard…
November 15, 2022
-
PythonPython Variables
A variable is a name that refers to a memory location. A Python variable, also known as an identifier, is…
November 16, 2022
-
C++Program To Find the grade of the student
Find the grade of the student based on the marks obtained in five subjects. Let the grade be calculated based…
November 17, 2022
-
C++Convert Decimal to Binary
Given a decimal number as input, we need to write a program to convert the given decimal number into an…
November 17, 2022
-
C++Find Fibonacci Series
The Fibonacci Series generates the next number by adding two preceding numbers. The Fibonacci sequence begins with two numbers, F0…
November 18, 2022
-
PythonModules and Functions in Python
What exactly is a Python Module? Python modules are files that contain Python definitions and statements. Functions, classes, and variables…
November 18, 2022
-
PythonInput and Output in Python
Two built-in functions in Python are used to perform input and output operations (OI Operations). The two built-in functions for…
November 20, 2022
-
C++Program to Find GCD
The largest number that divides two or more numbers is the Greatest Common Divisor (GCD) for those numbers. For example:…
November 20, 2022
-
PythonData Types in Python
The classification or categorization of data items is referred to as data types. It represents the type of value that…
November 21, 2022