George John has Published 1167 Articles

Interfacing ADC with 8085 Microprocessor

George John

George John

Updated on 26-Jun-2020 16:02:35

23K+ Views

In this section we will see how ADC (Analog to Digital Converter) works with Intel 8085 Microprocessor. The Analog to Digital Conversion is a quantizing process. Here the analog signal is represented by equivalent binary states. The A/D converters can be classified into two groups based on their conversion techniques.In ... Read More

Description of 8085 pins

George John

George John

Updated on 26-Jun-2020 14:54:29

2K+ Views

The 8085 is an 8-bit microprocessor designed by Intel in 1977 using NMOS technology that can address 64K Byte of memory. It has 40 pins DIP (Dual Inline Package) IC.In bellow fig, the pin number, and its associated functions are indicated for each of the 40 pins:Data pinsAD7-0 are known as ... Read More

How to check activity in portrait mode?

George John

George John

Updated on 26-Jun-2020 14:44:22

150 Views

This example demonstrate about How to check activity In portrait mode.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In the above ... Read More

C# program to perform Quick sort using Recursion

George John

George John

Updated on 26-Jun-2020 14:41:50

5K+ Views

Quick Sort is a sorting algorithm that uses the divide and conquer method. It takes a pivot element and places it in its correct position. Then the array to the left and right of the pivot element are again sorted using Quick Sort. This is done until the whole array ... Read More

How to get number of Sims available in android device?

George John

George John

Updated on 26-Jun-2020 14:39:51

236 Views

This example demonstrate about How to get number of Sims available in android device.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     ... Read More

How to get information about mobile supports data and voice in android?

George John

George John

Updated on 26-Jun-2020 14:33:36

86 Views

This example demonstrate about How to get information about mobile supports data and voice in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. ... Read More

How to obtain the highest occurring character in a String using C#?

George John

George John

Updated on 26-Jun-2020 14:33:01

3K+ Views

The highest occurring character in a string is one that occurs most number of times. This can be demonstrated using the following example.String: apples are red The highest occurring character in the above string is e as it occurs 3 times, which is more than the occurrence of any other ... Read More

How to get default Sim serial number in android?

George John

George John

Updated on 26-Jun-2020 14:28:53

3K+ Views

This example demonstrate about How to get default Sim serial number in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In ... Read More

How to print size of array parameter in a function in C++?

George John

George John

Updated on 26-Jun-2020 14:19:16

217 Views

The size of a data type can be obtained using sizeof(). A program that demonstrates the printing of the array parameter in a function in C++ is given as follows.Example Live Demo#include using namespace std; int func(int a[]) {    cout

How to pass a 2D array as a parameter in C?

George John

George John

Updated on 26-Jun-2020 14:14:28

945 Views

A 2-D array can be easily passed as a parameter to a function in C. A program that demonstrates this when both the array dimensions are specified globally is given as follows.Example Live Demo#include const int R = 4; const int C = 3; void func(int a[R][C]) {    int ... Read More

Advertisements