Arnab Chakraborty has Published 4293 Articles

Program to simulate decimal down counter in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 05-Oct-2019 07:28:40

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

Simulate decimal up counter in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 05-Oct-2019 07:27:42

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

Program to simulate a real-time clock in 8085 Microprocessor

Arnab Chakraborty

Arnab Chakraborty

Updated on 05-Oct-2019 07:15:31

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

Comparison of I/O port chips and memory chips in 8085

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2019 11:15:03

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

What is a Computer language?

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2019 11:09:46

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

Check if a number N starts with 1 in b-base in C++

Arnab Chakraborty

Arnab Chakraborty

Updated on 27-Sep-2019 10:49:33

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

Check if a number is Palindrome in PL/SQLs

Arnab Chakraborty

Arnab Chakraborty

Updated on 27-Sep-2019 10:42:03

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

Check if a number is Full Prime in C++

Arnab Chakraborty

Arnab Chakraborty

Updated on 27-Sep-2019 10:37:39

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

Check if a number is a power of another number in C++

Arnab Chakraborty

Arnab Chakraborty

Updated on 27-Sep-2019 09:13:37

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

Check if a number is a Mystery Numbers in C++

Arnab Chakraborty

Arnab Chakraborty

Updated on 27-Sep-2019 09:07:29

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

Advertisements