
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 205 Articles for Computer Programming

49 Views
Recursion Algorithm in Data Structure and Algorithms is used to call the function by itself. The article "Most Asked Problems on Recursion Algorithm in Coding Interviews" benefits you by providing good examples of every problem of the recursion. It provides the problems from the basic to the hard level. It covers the core and important problems of the recursion algorithm. The following are the main problems with the recursion algorithm − Easy Recursion Problems Print Pattern Recursively ... Read More

92 Views
A Queue is the data structure used to store and manage the data in a specific order by following the principle of First In First Out (FIFO). The article "Most Asked Problems on Queue Data Structure in Programming Interviews" benefits you by providing good examples of every problem of the tree. It provides the problems from the basic to the hard level. It covers the core and important problems of Queue.Here is the list of queue problems to excel in the ... Read More

99 Views
Dynamic Programming in Data Structures and Algorithms is used for breaking down the main problems into smaller problems. This article also breaks down all the problems into different sections which will help you to solve the problems section-wise. It includes the most common and trending problems of dynamic programming for clearing the interviews. Here are the problems list from beginner to expert level for learning the DP − Beginner DP Problems Climbing Stairs House Robber Maximum Subarray Coin Change Best Time to Buy and Sell Stock Pascal's Triangle Range Sum Query Fibonacci Number Min Cost Climbing Stairs Maximum Profit ... Read More

163 Views
The assembler and interpreter are responsible for the execution of a program. The assembler converts the code written in an assembly language into the machine code. Interpreters execute the code directly in a sequential order. In this article, we will discuss the difference between assembler and interpreter. What is an Assembler? An assembly language consists of mnemonics to write code in human-readable language. These mnemonics are GO, HALT, JUMP, NOT, and many more. An assembler is used to translate the code written in assembly language into machine language which could be understood by the machine. Types of Assemblers Assemblers are ... Read More

776 Views
What is Centralized Clock Synchronization? The process of internal clock synchronization in which different clocks of a system are synchronized with one standard clock of the system is referred to as centralized clock synchronization. In other words, an internal clock synchronization approach where the system clock is synchronized across all devices in a network with the help of a centralized server is referred to as centralized clock synchronization. The centralized clock synchronization is important to ensure the smooth operation of all devices in the network that are operating and communicating with each other on the same timeline. The centralized ... Read More

735 Views
In any computer system, the Operating System (OS) is the most important system software that creates an interface between a computer user and the computer hardware, and also manages all the system resources. The operating system is a software that performs all the necessary basic functions like file management, memory management, process management, input and output handling, and controlling of peripheral devices, such as disk drives and printers. The operating system is entirely responsible for creating a user interface and providing a platform to work all other software applications. However, like any other software of a computer system, the operating ... Read More

2K+ Views
A computer system that is specially designed to work and respond the external events in a timely and predictable fashion is referred to as a real-time system. Read this tutorial to learn the basic model of a real-time system. But before that let’s have a look into the basics of a real-time system. What is a Real-Time System? A computer system that is capable of responding to external events in a timely and predictable fashion is referred to as a real-time system. Real-time systems are commonly used in various applications, such as industrial automation, robotics, automotives, medical instruments, scientific and ... Read More

400 Views
What is a Look Aside Buffer? A Look-aside Buffer (LAB) is a type of cache memory that is used in computer systems to store frequently accessed data. The LAB is located between the CPU and the main memory, and it acts as a high-speed buffer to improve system performance. The LAB works by caching a portion of the data from the main memory that is frequently accessed by the CPU. When the CPU requests data from the main memory, the LAB first checks if the data is present in the buffer. If the data is found in the LAB, it ... Read More

825 Views
What is Spatial Computing? Spatial computing is a technological field that combines components of physical world and computer science to create a user interface which is more immersive and interactive. Spatial computing involves the tools and processes to record and process the three-dimensional data. The major elements of spatial computing include the advanced technology tools like virtual reality (VR), augmented reality (AR), mixed reality (MR), IoT, artificial intelligence (AI), physical controls, etc. All these components combine the digital systems and physical world together. Fundamentally, spatial computing uses technology that understand and interact with the world in spatial terms. Spatial computing ... Read More

306 Views
What is the Blue Screen of Death? Blue Screen of Death (BSOD) is an error screen which displayed due to driver error or hardware failure in a Windows OS based computer system. It is called BSOD because it is one of the critical system errors at the Windows Kernel level. Hence, the system cannot be recovered from it. The following picture depicts a Blue Screen of Death (BSOD) with a stop error code “CRITICAL_PROCESS_DIED”. Whenever the Blue Screen of Death error occurs, the system stops working and a blue screen is displayed with an error message. The error message ... Read More