Industrial training Day 5 and Day 6

Day 5 and Day 6: On 20 th May, 2019 we have designed GUI for Tic Tac Toe Game and write down the logic for this game. On 21 st May, 20...
Read More

Industrial Training Day 3 and Day 4

Day 3 and Day 4 : On 17 th May, 2019 we have designed a Calculator in Java and on 18 th May,2019 we have implemented complete function...
Read More

Industrial Training Day 2

Day 2: In 16 May, 2019 we have implemented the functionalities to the Frame created on 15 th May,2019. We implemented functionality lik...
Read More

Industrial Training Day 1

Day 1: On 15 th May 2019 we have designed GUI(Graphical Used Interface) for Welcome Window , Login Window and Sign-up window in Swing wh...
Read More

58 Program to convert BCD Number to Hexadecimal Number in 8086 Microprocessor

Code: ; Program to convert BCD Number to Hexadecimal Number .MODEL SMALL .STACK 100H .DATA BCD DB '1234' HEX_NUM DW 0 ...
Read More

60 Program to find smallest number in the array using Macro in 8086 Microprocessor

Code: ; Program to find smallest number in the array using Macro .MODEL SMALL .STACK 100H SMALL_W MACRO ARRAY , LENGTH , SMALLEST ...
Read More

59 Program to perform operation Z = (A+B) * (C+D) using Procedure in 8086 Microprocessor

Code: ; Program to perform operation Z = (A+B) * (C+D) ; using Procedure .MODEL SMALL .STACK 100H .DATA    A DB 1    B DB 2    C...
Read More