top of page
NEWS
LATEST NEWS ARTICLES


A SIMPLE PYTHON MULTIPLICATION PROGRAM
Hello….Am going to introduce to you a python Multiplication quiz program that will generate a random question (multiplication) and prompt...


A SIMPLE PYTHON PROGRAM THAT WILL SPLIT THREE NUMBERS INTO INDIVIDUAL.
A python program that prompts user to enter a three digit number, the program should split up the number entered by the user into...


A python program that computes and displays the distance between two points
Hello all. This is a simple python program that will compute and display the distance between two points. We have to get the user input...


A C program that will print number pyramid pattern
#include<stdio.h> #include<conio.h> int main() { int i, num, j, xpos = 30, ypos = 10; clrscr(); printf("Enter n (between 2 & 9) : ");...


A C program that will check if a number is a prime number or not
#include<stdio.h> int main() { int num, i, count = 0; printf("Enter a number: "); scanf("%d", &num); for (i = 2; i <= num / 2; i++) { if...


A Java program that will check if a number is palindrome or not
import java.util.Scanner; public class JavaProgram { public static void main(String args[]) { int num, rem, orig, rev=0; Scanner scan =...


A C program that will search for elements in an array
#include<stdio.h> int main() { int a[30], ele, num, i; printf("\nEnter no of elements :"); scanf("%d", &num); printf("\nEnter the values...


A C program that will merge two arrays
#include<stdio.h> int main() { int arr1[30], arr2[30], res[60]; int i, j, k, n1, n2; printf("\nEnter no of elements in 1st array :");...


A C program that will find factorial of number using recursion
#include<stdio.h> #include<conio.h> int fact(int); int main() { int factorial, num; printf("Enter the value of num :"); scanf("%d",...


A C program that will generate the fibonacci series starting from any two numbers
#include<stdio.h> int main() { int first, second, sum, num, counter = 0; printf("Enter the term : "); scanf("%d", &num); printf("\nEnter...
bottom of page