Python Function Python Functions is a block of statements that return the specific task. The idea is to put some commonly or repeatedly done tasks […]
Read moreCategory: Uncategorized
Hybrid Inheritance in C++
Hybrid Inheritance in C++ Hybrid Inheritance in C++ Hybrid Inheritance : Hybrid inheritance is combination of two or more inheritances such as single , […]
Read moreSome programs of loop in Python
Program of loop in Python Python program to print a multiplication table of a given number. # if the given range is 10 given_number […]
Read moreFew Examples of Python that use conditional statements
Here are a few examples of Python programs that use conditional statements to demonstrate different concepts: Example 1: Check if a number is positive, negative, […]
Read moreConditional Statements in Python
# if statement example if 10 > 5: print(“10 greater than 5”) print(“Program ended”) —-Output—- 10 greater than 5 Program ended 2. […]
Read moreTypecasting in Python
Type casting in Python Type Casting is the method to convert the Python variable data type into a certain data type in […]
Read morePrint Floyd’s Triangle in C++
Print Floyd’s Triangle in C++ Print Floyd’s Triangle in C++ FLOYD’S TRIANGLE #include <iostream> using namespace std; int main() { int n , a […]
Read moreWrite a Program in python to find the multiple of a number ( the divisor) out of given five numbers
Here’s a Python program to find the multiples of a given divisor out of five numbers provided by the user: def find_multiples(divisor, numbers):# Initialize a […]
Read moreCALCULATOR PROJECT HTML, CSS & JAVASCRIPT
CALCULATOR PROJECT HTML, CSS & JAVASCRIPT CALCULATOR PROJECT HTML, CSS & JAVASCRIPT HTML CODE:- <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ /> […]
Read moreBinary Search in C++
Binary Search in C++ Binary Search in C++ #include <iostream> #include <algorithm> using namespace std; int binary_search(int arr[], int size, int target) { int […]
Read more
Recent Comments