top of page
NEWS
LATEST NEWS ARTICLES


How to create a virus with notepad that will shut down any user pc
Follow this simple steps to create a virus that is capable of shutting down any user pc Convey your friend a little message and shut down...


This Java program will find the largest number among the three inputed numbers
import java.util.Scanner; public class Largest_Ternary { public static void main(String[] args) { int a, b, c, d; Scanner s = new...


A SIMPLE PYTHON PROGRAM THAT WILL GENERATE A GIVEN NUMBER AND PROMPT THE USER TO GUESS THE NUMBER TH
import random #random random = random.randint(0, 1) #Prompt user to enter guess guess = int(input("ENTER YOUR GUESS ")) #initialise guess...
THIS JAVA SIMPLE CODE WILL DISPLAY TIME AND DATE WITHOUT USER INPUT
import java.util.Date; public class DateAndTime { public static void main(String[] args) { // instantiate a date object Date date = new...


A python program that reads the radius and length of a cylinder and computes the area and volume
# prompt user to enter radius of a cylinder radius = eval(input("enter the radius of a cylinder: ")) # prompt user to enter length of a...


A Java program that will find the Area and Circumference of a circle
import java.util.Scanner; class CircleDemo { static Scanner sc = new Scanner(System.in); public static void main(String args[]) {...
A C+ program that will Multiply two matrices
include<stdio.h> int main() { int a[10][10], b[10][10], c[10][10], i, j, k; int sum = 0; printf("\nEnter First Matrix : "); for (i = 0; i...
A C+ program that will find the Area and Circumference of a circle
#include<stdio.h> int main() { int rad; float PI = 3.14, area, ci; printf("\nEnter radius of circle:"); scanf("%d", &rad); area = PI *...


A python program that will calculate the quadratic equation using formula method.
In this post, I will show you how to write a python program that will calculate the quadratic equation using formula method. I...


A python program that will convert pounds into kilograms. Without wasting much of your time, let’s g
Prompt the user to enter a value in pounds pounds = eval(input("enter a value in pounds: ")) convert pounds to kilogram kilograms =...
bottom of page