
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Arnab Chakraborty has Published 4293 Articles

Arnab Chakraborty
5K+ Views
Here we will see how to use 8085 to write a program in 8085 kit. We will also see how to debug the program and check the result after successful execution.Let us see a typical keypad structure of 8085 kit. (This keyboard pattern may vary in different kits of different ... Read More

Arnab Chakraborty
1K+ Views
Here we will see one program for Intel 8085 Microprocessor. This program will calculate the multiplication of two 16-bit numbers.Problem Statement −Write an 8085 Assembly language program to multiply two 16-bit numbers stored at 8000H - 8001H and 8002H - 8003H.Discussion −This program takes the 16 bit data from memory location 8000H ... Read More

Arnab Chakraborty
670 Views
Here we will see 8085 Microprocessor program, that will find the multiplication result of two BCD numbers.Problem Statement −Write an 8085 Assembly language program to find two BCD number multiplication. The numbers are stored at location 8000H and 8001H.Discussion −In this program the data are taken from 8000H and 8001H. The result ... Read More

Arnab Chakraborty
895 Views
Let us see one 8085 Microprocessor problem. In this problem we will see how to multiply two numbers using shift and add methods, not by using additive approach.Problem Statement −Write an 8085 Assembly language program to multiply two 8-bit numbers using shift and add method.Discussion −The shift and add method is an ... Read More

Arnab Chakraborty
368 Views
Here we will see one 8085 Microprocessor program. This program will add the contents of N word locations.Problem Statement −Write an 8085 Assembly language program to add N 16-bit numbers stored into memoryDiscussion −The 16-bit numbers are stored into memory location 8001H onwards. The value of N is stored at location 8000H. ... Read More

Arnab Chakraborty
371 Views
Here we will see one 8085 Microprocessor program. This program will sort a sequence of numbers in reverse order using selection sort technique.Problem Statement −Write an 8085 Assembly language program to sort a given sequence using selection sort in descending order. The numbers are stored at 8001H onwards. 8000H is holding ... Read More

Arnab Chakraborty
506 Views
Here we will see one 8085 Microprocessor program. In this program we will see how to sort a sequence of numbers using selection sort.Problem Statement −Write an 8085 Assembly language program to sort a given sequence using selection sort in ascending order. The numbers are stored at 8001H onwards. 8000H is ... Read More

Arnab Chakraborty
498 Views
Here we will see one 8085 microprocessor program that will help to arrange the numbers in ascending or descending order based on our choice. Sort using bubble sort technique.Problem Statement −Write an 8085 Assembly language program to perform bubble sorting operation on a set of data, and arrange them into ascending ... Read More

Arnab Chakraborty
598 Views
Here we will see one 8085 program to arrange a block of numbers in ascending order.Problem Statement −Write an 8085 program to sort numbers in ascending order where n number of numbers are stored in consecutive memory locations starting from 8041H and the value of n is available in memory location ... Read More

Arnab Chakraborty
462 Views
Here we will see one 8085 program. This program will perform different operations on BCD numbers based on choice.Problem Statement −Write an 8085 Assembly language program to perform some operations on two 8-bit BCD numbers base on our choice.Discussion −In this program we are taking a choice. The choice value is stored ... Read More