
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
Kiran Kumar Panigrahi has Published 392 Articles

Kiran Kumar Panigrahi
71K+ Views
The objective of search in Artificial Intelligence (AI) is to find the path to solve different problems. The search in AI can be executed in two ways namely, Forward Reasoning and Backward Reasoning. The most basic difference between the two is that forward reasoning starts with the new data to ... Read More

Kiran Kumar Panigrahi
35K+ Views
A microprocessor is an integrated circuit which can function as a central processing unit (CPU) of a computer system or a microcontroller. It is constructed by integrating millions of transistors, diodes, and resistors on a single electronic chip.8085 and 8086 are two major types of microprocessors produced by Intel. Go ... Read More

Kiran Kumar Panigrahi
57K+ Views
Both Synchronous and Asynchronous Sequential Circuits are types of sequential circuits that use feedback for the next output generation. On the basis of the type of this feedback, both circuits can be differentiated. A sequential circuit is one whose output depends upon both present and past inputs. The classification of ... Read More

Kiran Kumar Panigrahi
46K+ Views
Private Keys and Public Keys terms are used in cryptography. These keys are used to encrypt/decrypt sensitive data. Read through this article to find out more about private and public keys and how they are different from each other.What is Private Key?The private key is used in both encryption as ... Read More

Kiran Kumar Panigrahi
45K+ Views
Recursion and Iteration both repeatedly execute the set of instructions. Recursion occurs when a statement in a function calls itself repeatedly. The iteration occurs when a loop repeatedly executes until the controlling condition becomes false. The basic difference between recursion and iteration is that recursion is a process always applied to a function and iteration is applied to the set of instructions which ... Read More

Kiran Kumar Panigrahi
44K+ Views
Both Routers and Switches are network connecting devices. Routers work at the network layer and are responsible to find the shortest path for a packet across the network, whereas Switches connect various devices in a network. Routers connect devices across multiple networks. Read through this article to find out ... Read More

Kiran Kumar Panigrahi
53K+ Views
The data that a user enters into multiple pages of a website can be saved using a combination of cookies and sessions. Cookies and sessions are both vitally important since they record the data that the user has provided for a variety of purposes.Cookies and Sessions are used to store ... Read More

Kiran Kumar Panigrahi
145K+ Views
Both BFS and DFS are types of graph traversal algorithms, but they are different from each other. BFS or Breadth First Search starts from the top node in the graph and travels down until it reaches the root node. On the other hand, DFS or Depth First Search starts from ... Read More

Kiran Kumar Panigrahi
33K+ Views
In object oriented programming, both constructor and destructor are the member functions of a class having the same name as the class. A constructor helps in initialization of an object, i.e., it allocates memory to an object. On the other hand, a destructor deletes the created constructor when it is ... Read More

Kiran Kumar Panigrahi
39K+ Views
Algorithm and Pseudocode are the two related terms in computer programming. The basic difference between algorithm and pseudocode is that an algorithm is a step-by-step procedure developed to solve a problem, while a pseudocode is a technique of developing an algorithm. In this article, we will discuss the other ... Read More