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 moreCategory: Tech Education
Python tutorials
Python tutorials for beginners Python Operators In Python programming, Operators in general are used to perform operations on values and variables. These are standard […]
Read moreTic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT
Tic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT Tic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT HTML CODE:- <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ […]
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 moreWrite a program in python to check whether a number is prime or not.
Here’s a Python code to check if a given number is prime or not: def is_prime(n):if n <= 1:return Falseelif n <= 3:return Trueelif n […]
Read moreDdu entrance exam
What is the Entrance Exam for DDU Gorakhpur? The entrance exam for DDU Gorakhpur is the DDU entrance exam. The Deen Dayal Upadhyaya Entrance Exam […]
Read moreAMAZON PROJECT HTML & CSS
AMAZON PROJECT HTML & CSS AMAZON PROJECT HTML & CSS HTML CODE <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> […]
Read moreC program to copy contents of one file to another file
#include <stdio.h> #include <stdlib.h> // For exit() int main() { FILE *fptr1, *fptr2; char […]
Read moreProgram to concatenate two string without using strcat
#include <stdio.h> int main() { // Get the two Strings to be concatenated char str1[100] = “Good”, str2[100] = “morning”; […]
Read moreOCR and MICR
OCR and MICR OCR and MICR OCR OCR is stands for ( Optical Character Recognition ) . It is a technology that converts different types […]
Read more
Recent Comments