Code: // Program on hierarchical inheritance class Course { String insName = "Coding Atharva"; } class Java extends Co...
Read More
120 Program to count number of white space character in character stream in Java.
Code: /* Program to count number of whitespace character in character stream. */ import java.io.*; class CountDemo { public s...
Read More
119 Program to demonstrate BufferedOutputStream in Java
Code: /* Program to demonstrate BufferedOutputStream */ import java.io.*; class BufferedODemo { public static void main(Strin...
Read More
118 Program to demonstrate BufferedInputStream in Java
Code: /* Program to demonstrate BufferedInputStream */ import java.io.*; class BufferedIDemo { public static void main(String...
Read More
117 Program to demonstrate ByteArrayOutputStream in Java
Code: /* Program to demonstrate ByteArrayOutputStream in Java */ import java.io.*; class ByteOutputDemo { public static void ma...
Read More
116 Program to demonstrate ByteArrayInputStream in Java
Code: /* Program to demonstrate ByteArrayInputStream in Java */ import java.io.*; class ByteDemo { public static void main(Stri...
Read More
115 Program to print every nth character from the file in Java
Code: /* Program that reads a text file and prints every nth character from the file. 'n' should be passed as a command lin...
Read More
114 Program to copy from one file to another file in Java
Code: /* Program to copy data from one file to other */ import java.io.*; class CopyDemo { public static void main(String args[]) t...
Read More
113 Program to write data into File in Java
Code: import java.io.*; class WritingDemo { public static void main(String args[]) throws FileNotFoundException , IOException { ...
Read More
112 Program to read data from file in Java
Code: import java.io.*; class FISDemo { public static void main(String args[]) throws IOException,FileNotFoundException { ...
Read More
111 Program to draw and fill Polygon in Java
Code: /* Program to draw and fill Polygon */ import java.awt.*; import java.applet.*; public class Polygon extends Applet { pub...
Read More
110 Program to draw and fill Arc in Java
Code: /* Program to Draw Arcs in Java */ import java.applet.*; import java.awt.*; public class Arc extends Applet { public void ...
Read More
109 Program to draw Circle in Java
Code: import java.applet.*; import java.awt.*; public class Circle extends Applet { public void paint( Graphics g ) { g.setCo...
Read More
57 Program to convert Lower Case String to Upper Case String in 8086 Microprocessor
Convert Letter : https://codingatharva.blogspot.com/2019/01/11-program-to-convert-capital-letter-in.html Code: ; Program to convert Lo...
Read More
56 Program to concatenate two string in 8086 Microprocessor
Code: ; Program to concat two string .MODEL SMALL .STACK 100H .DATA STR1 DB 'CODING $' STR2 DB 'ATHARVA$' L1 DB...
Read More
55 Program to reverse the given String in 8086 Microprocessor
Code: ; Program to reverse the given String .MODEL SMALL .STACK 100H .DATA OSTR DB 'CODING$' DSTR DB ? LEN DB 0 .COD...
Read More
54 Program to compare two string with contain using String Instruction in 8086 Microprocessor
Code: ; Program to compare two string with contain .MODEL SMALL .STACK 100H .DATA STR1 DB 'ATHARV$' STR2 DB 'ATHA...
Read More
53 Program to compare two string with contain in 8086 Microprocessor
Code: ; Program to compare two string with contain .MODEL SMALL .STACK 100H .DATA STR1 DB 'CODING$' STR2 DB 'ATHA...
Read More
52 Program to compare two string length in 8086 Microprocessor
Code: ; Program to compare two string length .MODEL SMALL .STACK 100H .DATA STR1 DB 'CODING$' STR2 DB 'ATHARV$...
Read More
51 Program to find length of String in 8086 Microprocessor
Code: ; Program to find length of the string .MODEL SMALL .STACK 100H .DATA STR1 DB "Atharva$" LEN DB 0 .CODE MOV AX...
Read More
50 Program to transfer a block of 50 numbers from 20000h to 30000h in 8086 Microprocessor
Code: ; Program to transfer a block of 50 numbers from 20000h to 30000h .MODEL SMALL .STACK 100H .DATA .CODE MOV AX , 2000H ; ...
Read More
49 Program on Overlapping Block transfer in 8086 Microprocessor
Code: ; Transfer block of data from the source address ; to destination address and vice versa [Overlapping block transfer] .MODEL SM...
Read More
48 Program to transfer block using string Instruction in 8086 MIcroprocessor
Code: ; PROGRAM TO TRANSFER BLOCK USING STRING INSTRUCTION .MODEL SMALL .STACK 100H .DATA ARR1 DW 1111H , 2222H , 3333H , 4444H ,...
Read More
47 Program to transfer block without using string instruction in 8086 Microprocessor
Code: ; PROGRAM TO TRANSFER BLOCK WITHOUT USING STRING INSTRUCTION .MODEL SMALL .STACK 100H .DATA B1 DW 2110H , 3112H , 4113H , ...
Read More
46 Program to find count of positive number from array in 8086 Microprocessor
Code: ; Program to find count of positive number from array .MODEL SMALL .STACK 100H .DATA ARR DW 10H , -12H , 1H , -5H , -4H ...
Read More
45 Program to check number is positive or negative in 8086 Microprocessor
Code: ; Program to check number is positive or not .MODEL SMALL .STACK 100H .DATA NUM DB -12H RES DB ? .CODE MO...
Read More
44 Program to add only even number in the array in 8086 Microprocessor
Code: ; Program to add only even number in the array .MODEL SMALL .STACK 100H .DATA SUM DB 0 ARR DB 10H,15H,12H,4H,7H...
Read More
43 Program to count odd number from 8 bit array in 8086 Microprocessor
Code: ; Program to count odd number from 8 bit array .MODEL SMALL .STACK 100h .DATA COUNT DB 0 ARR DB 10H,23H,6H,11H,13H .CO...
Read More
41 Program to arrange the content of memory location 4000h to 4002h in descending order in 8086 Microprocessor
Code: ; Arrange the content of memory location ; 4000h to 4002h in descending order .MODEL SMALL .STACK 100H .CODE MOV AX , 1000...
Read More
108 Program to create two button and add ActionListener in Java
Code: import java.awt.*; import java.applet.*; import java.awt.event.*; public class Code extends Applet implements ActionListener {...
Read More
42 Program to find number is odd or even in 8086 Microprocessor
Code: ; Program to find number is odd or even .MODEL SMALL .STACK 100H .DATA MSG1 DB "ODD$" MSG2 DB "EVEN$&q...
Read More
Subscribe to:
Posts (Atom)