top of page
Recent Posts






Archive
Tags


PHP program to convert 12HR time Format into 24HR time format.
Source code: <?php //$input = $_POST['time']; $input = "07:05:45PM"; $arr = str_split($input); //converting string into array ...


PHP program to find the last non-repeating character in a String.
Source code: <?php function find_non_repeat($word) { $n = strlen($word); for ($i = $n-1; $i >= 0; $i--) { if (substr_count($word,...


Inheritance program in Java
source code: import java.util.Scanner; class father{ String name; int age; void get(){ Scanner sc=new Scanner(System.in); ...


Java programs to print Numeric patterns.
Program 1: import java.util.Scanner; class patt2dArray2{ public static void main(String[] args) { int a[][] = new int[5][5]; int i,j; ...


2D Array Calculator (or 4func. Matrix Calculator)
source code: import java.util.Scanner; class array2dCalc{ public static void main(String args[]) { int arr1[][]= new int[3][3]; ...


What is Computer Programmming? What are Programming Languages? Thier History, Features Etc.
computer programming: The process of developing and implementing various sets of instructions to enable a computer to do a certain task....


ProgMania: Teaser is Out. Please Subscribe For Computer Sc. & Tech. Videos in Hindi.
Here You Get: ✔Latest Computer Sc. & Tech. Videos. ✔Interesting Updates ✔Tips & Tricks ✔All in Hindi
bottom of page
