All Easy Articles
Given two arrays among which one is almost sorted with one element being in the wrong position making the array unsorted, the task is to… Read More
Prerequisite – Virtual Memory Thrashing is a condition or a situation when the system is spending a major portion of its time servicing the page faults,… Read More
Difference between Locking, Blocking and Deadlocking Locking: Locking occurs when a connection needs access to a piece of data in a database and it locks… Read More
Prerequisite: Time Complexity Analysis Generally, while doing competitive programming problems on various sites, the most difficult task faced is writing the code under desired complexity… Read More
Given a set of ‘n’ vertices and ‘m’ edges of an undirected simple graph (no parallel edges and no self-loop), find the number of single-cycle… Read More
Simulation is the process of learning by doing. Whenever there is something new in the world, we try to analyze it first by examining it… Read More
In web design, margins play a crucial role in defining the spacing around an element. Here, we’ll learn about the essential concepts of CSS margins.… Read More
Thread is a single sequence stream within a process. Threads have same properties as of the process so they are called as light weight processes.… Read More
Given an array arr containing elements from [1…to n]. Each element appears exactly once in the array arr. Given an string str of length n-1.… Read More
About Company Recruitment Process Questions Asked in 3DPLM Interview Experiences About Company : 3DPLM is Research & Development center of Dassault Systèmes and it’s culture is nurturing and dynamic.… Read More
JComboBox is a part of Java Swing package. JComboBox inherits JComponent class . JComboBox shows a popup menu that shows a list and the user… Read More
Print the Fibonacci sequence. The first Fibonacci numbers are:     C++ // Simple CPP Program to print Fibonacci // sequence#include <iostream>using std::cout;void fib(int n){    int a… Read More
Round 1: Telephonic Round  There is a university with certain sets of courses. You can take a course in any semester but you need to… Read More
Given the Hexadecimal value string as input, the task is to convert the given hexadecimal value string into its corresponding ASCII format string. Examples:  Input:… Read More
Given a binary tree. Find if a given vertical level of the binary tree is sorted or not. (For the case when two nodes are overlapping,… Read More
Prerequisite – IPv4 Datagram Fragmentation and Delays Fragmentation is done by the network layer when the maximum size of datagram is greater than maximum size of… Read More
A process has several stages that it passes through from beginning to end. There must be a minimum of five states. Even though during execution,… Read More
Given a string S consisting of only characters ‘a’ and ‘b’, and an integer N. The string S is added N times to obtain string… Read More
Given a string of lowercase alphabets, the task is to find indexes of a substring with given power. Assume power of a to be 1,… Read More
It is the analysis of flow of data in control flow graph, i.e., the analysis that determines the information regarding the definition and use of… Read More