
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
718 Views
Here we will see one 8085 Microprocessor program. This program will be used to convert 16-bit binary data to BCD data.Problem Statement −Write an 8085 Assembly language program to convert 16-bit binary data to BCD data. The binary data is stored at location 8000H and 8001H.Discussion −This problem is solved by implementing ... Read More

Arnab Chakraborty
516 Views
Here we will see one program that can perform subtraction for multi-byte BCD numbers using 8085 microprocessor.Problem Statement −Write an 8085 Assembly language program to subtract two multi-byte BCD numbers.Discussion −The numbers are stored into memory, and one additional information is stored. It will show us the byte count of the multi-byte ... Read More

Arnab Chakraborty
427 Views
Here we will see one microprocessor program using 8085. 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 ... Read More

Arnab Chakraborty
1K+ Views
Now let us see a program of Intel 8085 Microprocessor. This program will find the LCM of two 8-bit numbers.Problem Statement −Write 8085 Assembly language program to find LCM of two 8-bit numbers stored at location 8000H and 8001HDiscussion −In this program we are reading the data from 8000H and 8001H. By ... Read More

Arnab Chakraborty
2K+ Views
Here we will see one 8085 Microprocessor program, that can check whether a number is palindrome or not.Problem Statement −Write an 8085 Assembly language program to check whether a bit pattern is palindrome or not.Discussion −In this program we are taking the number from location 8000H. The program will return 00H if ... Read More

Arnab Chakraborty
639 Views
Here we will see a program of Intel 8085 Microprocessor. Using this program, we can convert 8-bit numbers to two digit ASCII values.Problem Statement− Write an 8085 Assembly language program to convert 8-bit binary to 2-character ASCII values. The 8-bit binary number is stored in memory location 8050H. Separate each nibbles ... Read More

Arnab Chakraborty
677 Views
Here we will see one 8085 program, the program will convert ASCII to binary values.Problem Statement− Write an 8085 Assembly level program to convert ASCII to binary or Hexadecimal character equivalent values.Discussion−The ASCII of number 00H is 30H (48D), and ASCII of 09H is 39H (57D). So all other numbers are ... Read More

Arnab Chakraborty
465 Views
Here we will see one 8085 Microprocessor program. This program will help us to check a given value is a valid 2 out of 5 code or not.Problem Statement− Write an 8085 Assembly language program to check whether a given number is two out of five code or not. The number ... Read More

Arnab Chakraborty
681 Views
Here we will see how to perform the linear search in 8085 microprocessor. The linear search is searching elements sequentially from start to end position.Problem Statement −Write an 8085 Assembly language program to search a key value in a block of data using linear search (sequential search) technique.DiscussionSuppose the data are ... Read More

Arnab Chakraborty
622 Views
Here we will see one 8085 microprocessor program. This program will generate 00H and FFH alternatively.Problem Statement − Write an 8085 Assembly language program that can generate 00H and FFH alternatively.Discussion − The 00H and FFH are changed alternatively in each second. So we need one second delay. We have created delay subroutine to ... Read More