Kiran Kumar Panigrahi has Published 425 Articles

Difference between CALL and JUMP instructions

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 16:26:20

12K+ Views

A CALL instruction is used to call a subroutine, while a JUMP instruction updates the program counter value and makes it point to another location inside the program. Read this article to learn more about CALL and JUMP instructions and how they are different from each other. What is a ... Read More

Difference between Byte Addressable Memory and Word Addressable Memory

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 16:23:48

6K+ Views

Memory plays a vital role in any computer system and it is very important to understand how it works and how it stores the data. In general, we know that computer memory stores the data after converting into bits or bytes (which is nothing but collection of bits). In this ... Read More

Difference Between Bubble Sort and Selection Sort

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 16:21:13

11K+ Views

The task of arranging elements of an array in a particular order is referred to as sorting. The sorting of an array or a list is mainly done to make the searching easier. There are two types of sorting algorithms namely, Bubble Sort and Selection Sort. Bubble sort performs sorting ... Read More

Difference Between B-tree and Binary tree

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 16:14:47

6K+ Views

There are two types of non-linear data structures namely, B-Tree and Binary Tree. These two terms sound similar but they are absolutely different from each other. The most basic difference between a B-Tree and a Binary Tree is that a B-Tree is used for data storage on a disk, whereas ... Read More

Difference Between Array and Structure

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 16:05:22

14K+ Views

Arrays and Structures are two different types of container datatype. The most basic difference between an array and a structure is that an Array can contain the elements of same datatype, while a Structure is a collection that can contain the elements of dissimilar datatypes. Read this article to learn ... Read More

Difference Between Array and Pointer

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 15:47:39

8K+ Views

Array and pointers have a very close relationship in programming, but there are several differences between them. Read this article to find out how Arrays are different from Pointers. But let us first discuss some basics of arrays and pointers. What is an Array? An array is one that stores ... Read More

Difference Between Array and Linked List

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 15:45:40

5K+ Views

The basic difference between an array and a linked list is in their structure. An array relies on the index-based data structure, whereas a liked list is based on the references. Read this article to find out more about Arrays and Linked Lists and how they are different from each ... Read More

Difference between Alpha and Beta Testing

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 15:32:15

563 Views

Alpha and Beta testing are types of testing which are based on feedback from real customers using real products in real environments, but they are driven by distinct goals and processes. Read this article to find out more about Alpha and Beta testing and how they are different from each ... Read More

Difference between Adaptive and Non Adaptive routing algorithms

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 15:23:19

2K+ Views

Have you ever wondered how routers perform various tasks for us? For example, when searching for something on the Internet or fetching some data, routers perform some functions. There are different ways to do the same function as we do in day-to-day life. Similarly, routers also have different ways of ... Read More

Difference Between Abstraction and Data Hiding

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 20-Feb-2023 15:10:46

8K+ Views

In object oriented programming (OOP), abstraction and data hiding are two important concepts. Abstraction is a process of extracting important information without involving the complete detail of the system. On the other hand, data hiding is a process of wrapping the data in a single unit, i.e., to achieve data ... Read More

Advertisements