
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
902 Views
Here we will see one 8085 Microprocessor program. In this program we will see how to simulate the decimal down counter.Problem Statement −Write an 8085 Assembly language program to simulate decimal down counter. It will count from 9 down to 0, and comeback to 9 again.Discussion −In this section we are simulating ... Read More

Arnab Chakraborty
434 Views
Here we will see one 8085 Microprocessor program. In this program we will see how to simulate the decimal up counter.Problem Statement− Write an 8085 Assembly language program to simulate the decimal up counter. That will count from 0 through 9. Then come back to 0 again.Discussion− In this section we are ... Read More

Arnab Chakraborty
790 Views
Here we will see one interesting problem. We will see how to simulate one real-time clock using 8085 microprocessor.Problem Statement −Write an 8085 Assembly language program to simulate real-time clock.Discussion −In this program we are creating a real time clock using 8085MPU. Here we are generating 1s delay to update seconds. This ... Read More

Arnab Chakraborty
361 Views
In this section we will see the basic comparisons between I/O port chips and the memory chips in 8085 microprocessor.Information is also stored in an Input Output port chip similar to a memory chip. Information of 1 byte are stored in an Input Output port chip on the other hand ... Read More

Arnab Chakraborty
13K+ Views
To communicate with the computers, we need some languages. These are computer languages.There are mainly three different languages with the help of which we can develop computer programs. And they are –Machine Level languageAssembly Level Language andHigh Level LanguageMachine Level LanguageComputer can understand only the language of Digital Electronics. Digital ... Read More

Arnab Chakraborty
190 Views
We have a number N and a base b. In this program we have to check whether the number is starting with 1 in base b or not. Suppose a number 6 is given. In binary this is 110, so it starts with 1, in base 4 also it will ... Read More

Arnab Chakraborty
9K+ Views
In this section we will see how to check whether a number is Palindrome or not using the PL/SQL. In PL/SQL code, some group of commands are arranged within a block of related declaration of statements.A number is palindrome if the number, and the reverse of that number are same. ... Read More

Arnab Chakraborty
345 Views
Here we will see, how to check, whether a number is full prime or not. A number is said to be a full prime, if it is prime, and all of its digits are also prime. Suppose a number is 37, this is full prime. But 97 is not full ... Read More

Arnab Chakraborty
607 Views
Here we will see, whether a number is power of another number or not. Suppose a number 125, and another number 5 is given. So it will return true when it finds that 125 is power of 5. In this case it is true. 125 = 53.AlgorithmisRepresentPower(x, y): Begin ... Read More

Arnab Chakraborty
746 Views
Here we will see how to check whether a number is Mystery number or not. A Mystery number is a number that can be represented by sum of two numbers, and the numbers re reverse of each other. Let us see the code to get better idea. We have to ... Read More