All Medium Articles
Given a singly linked list, the task is to remove all the nodes which have a lesser value on left side. Examples:  Input: 12->15->10->11->5->6->2->3Output: Modified… Read More
Given two numbers, the task is to find the number of carry operations required when two numbers are added as below.  1234 + 5678 ——– 6912 ——– Examples:   Input: n… Read More
Given a stack of integers, write a function pairWiseSorted() that checks whether numbers in the stack are pairwise sorted or not.  The pairs must be… Read More
Given an unsorted Linked List of integers. The task is to sort the Linked List into a wave like Line. A Linked List is said… Read More
I applied to OLA in off campus drive for Full Stack Developer role.  Round 1. First round was telephonic round. First question was tell me… Read More
Popular Schema – Star Schema, Snow Flake Schema  Dimensional Data Modeling is one of the data modeling techniques used in data warehouse design. The concept… Read More
Given a number N and a number K. The task is to find the number of divisors of N which are divisible by K. Here… Read More
Prerequisites – Introduction to Virtualization, Machine Reference Model of Virtualization In full virtualization primary hardware is replicated and made available to the guest operating system, which… Read More
Prerequisites – Cloud computing, Load balancing in Cloud Computing, Inter-process Communication In the development of models and technologies, message abstraction is a necessary aspect that… Read More
The HTML <meter> form Attribute defines the scale for measurement in a well-defined range and supports a fractional value. It is also known as a… Read More
Public, private and protected are called access modifiers. Just like C++, PHP also have three access modifiers such as public, private and protected. The visibility… Read More
The deleteCharAt(int index) method of StringBuilder class remove the character at the given index from String contained by StringBuilder. This method takes index as a… Read More
The <bdi> tag refers to the Bi-Directional Isolation. It differentiates a text from other text that may be formatted in a different direction. This tag… Read More
The List is a child interface of Collection. It is an ordered collection of objects in which duplicate values can be stored. Since List preserves… Read More
Given an sorted array of positive numbers our tasks is to find the kth smallest sum of continuous subarray. Examples: Input : a[] = {1,… Read More
Round 1:Written round(1hr) There was a written round of around 1hr. They gave 2coding questions and we had to write it on the paper. Around… Read More
Round 1:Round 1 consist of 4 section. Section A verbal question mcq Basic English Paragraph. Section B aptitude question easy leave Section 2 consist of… Read More
Design a Logistics System (Object Oriented Design). Tell about the different classes and their relationships with each-other. It is not a System Design question, so… Read More
Given a weighted Directed Graph where the weights may be negative, find the shortest path between every pair of vertices in the Graph using Johnson’s… Read More
Given an array ‘arr’ of length ‘n’. The task is to find the largest contiguous sub-array having the count of prime numbers strictly greater than… Read More