1 Program to Print a Message in 8086 Microprocessor

Mount cd c:\ CD C:\TASM .MODEL SMALL .STACK 100 .DATA MSG1 DB "MY FIRST PROGRAM IN 8086$" .CODE MOV AX,@DATA M...
Read More

37 Program to check input password is correct or not in Java

Code: import java.io.*; class Password { public static void main( String args[] )throws IOException { BufferedReader buff = ...
Read More

36 Program on jagged array in Java

Code: import java.util.Scanner; class Aray { public static void main( String args[] ) { Scanner scan = new Scanner( System.in )...
Read More