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

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