
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
Ginni has Published 1522 Articles

Ginni
22K+ Views
A computer has programs stored in its RAM in the form of 1s and 0s that are interpreted by the CPU as instructions. One word of RAM includes one instruction in the machine language.These instructions are loaded to the CPU one at a time, where it receives decoded and implemented. ... Read More

Ginni
7K+ Views
The term ‘computer architecture’ was coined in 1964 by the ‘chief architects’ of the IBM System/360 in a paper announcing the most successful family of computers ever built. The interpretation includes the definitions of the registers, memory, the instruction set, instruction formats, addressing modes, and the actual coding of the ... Read More

Ginni
25K+ Views
A pair of signal lines that facilitate the transfer of multi-bit data from one system to another is known as a bus.The diagram demonstrates three master devices as M3, M6, and M4.The master device start and controls the connection. S7, S5, and S2 are slave devices. Slave devices counter to ... Read More

Ginni
12K+ Views
A computer systems create use of several storage registers that are linked to a typical operational unit is known as the arithmetic and logic unit (ALU). ALU is the central and one of the most essential units internal the CPU of the computer.All the logical and numerical operations of a ... Read More

Ginni
14K+ Views
Shift micro-operations are used for the serial transfer of data and also support in conjunction with arithmetic, logic, and several data-processing operations. The contents of a register can be shifted to the left or the right.Simultaneously, that the bits are shifted, the first flip-flop holds its binary data from the ... Read More

Ginni
33K+ Views
Logic operations are binary micro-operations implemented on the bits saved in the registers. These operations treated each bit independently and create them as binary variables.For example, the exclusive-OR micro-operation with the contents of two registers R1 and R2 is denoted by the statementP: R1←R1$\oplus$R2It determines a logic micro-operation to be ... Read More

Ginni
4K+ Views
The increment micro-operation inserts one to a number in a register. For example, if a 4-bit register has a binary value 0110, it will go to 0111 after it is incremented. The increment micro-operation is performed by a 4-bit combinational circuit incrementer.This micro-operation is simply performed with a binary counter. ... Read More

Ginni
2K+ Views
The subtraction of binary numbers can be completed effectively by creating the 2's complement of addend bits and inserting it to the augend bits. The 2's complement can be acquired by taking the 1's complement and inserting one to the least significant pair of bits.The 1's complement can be executed ... Read More

Ginni
18K+ Views
A Binary Adder is a digital circuit that implements the arithmetic sum of two binary numbers supported with any length is known as a binary adder. It is generated using full-adder circuits connected in sequence. The output carries from one full-adder linked to the input carry of the next full-adder.The ... Read More

Ginni
13K+ Views
The operations implemented on data stored in registers are known as micro-operations. A micro-operation is a basic operation implemented on the data saved in one or more registers.There are various micro-operations including addition, subtraction, increment, and decrement.Add Micro-OperationIt is described by the following statement −R3 → R1 + R2The following ... Read More