Maximum element in a very large array using pthreads
Given a very large array of integers, find maximum within the array using multithreading....
read more
Bus organization of 8085 microprocessor
Introduction :...
read more
8085 program to add two 16 bit numbers
Problem: Write an assembly language program to add two 16 bit numbers by using:...
read more
IPC using Message Queues
Prerequisite : Inter Process Communication A message queue is a linked list of messages stored within the kernel and identified by a message queue identifier...
read more
Making your own Linux Shell in C
To know more about what a shell is, click here....
read more
Determinant of N x N matrix using multi-threading
Given a matrix of N x N, task is to find the determinant of the matrix using multi-threading....
read more
TCP Server-Client implementation in C
Prerequisites – Socket Programming in C/C++, TCP and UDP server using select, UDP Server-Client implementation in C...
read more
Differences between 8086 and 8088 microprocessors
8086 Microprocessor is an advanced version of 8085 Microprocessor, designed by Intel in 1976. The number 8086 denotes the IC number of this microprocessor. It is a 16-bit microprocessor. It has 16 bits of the data bus, that is why it can read or write either 16 bit or 8 bit of data at a time.. It has 20 bits of address lines that can access 2^20 of address locations....
read more
Creating child process using fork() in Python
Create a child process and display process id of both parent and child process....
read more
Data transfer instructions in 8085 microprocessor
Data transfer instructions are the instructions that transfer data in the microprocessor. They are also called copy instructions. Here is the following is the table showing the list of logical instructions:...
read more
Arithmetic instructions in 8085 microprocessor
Arithmetic Instructions are the instructions which perform basic arithmetic operations such as addition, subtraction and a few more. In 8085 microprocessor, the destination operand is generally the accumulator. Following is the table showing the list of arithmetic instructions:...
read more
Difference between Pipes and Message Queues
Pipes: Unix system uses pipes, to establish inter process communication. A pipe provides an unidirectional flow of data. A pipe is created using the pipe() function....
read more