All Medium Articles
Software and hardware are interdependent. Without the hardware, a software is an abstraction. When you put hardware and software together, you create a system. This… Read More
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages… Read More
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages… Read More
Array.Rank Property is used to get the rank of the Array. Rank is the number of dimensions of an array. For example, 1-D array returns… Read More
SAP Labs India visited our college for full time hiring for the position of Associate Developer. Round 1 (Online Test): This round consisted of 2… Read More
They visited our college. They shortlisted 80 members based on CGPA 8.5. Branches Allowed: Mech, ISE, CSE, EEE and EC First round: Aptitude + Technical(60… Read More
Given an array[] of N positive integers and M queries. Each query consists of two integers L and R represented by a range. For each… Read More
First, there was an online round on cocubes of 1 hr 30 min. 1hr was for aptitude which consisted of 60 questions(mental ability, comprehensive, reasoning) and next… Read More
Given a character array a[] represents a prefix expression. The task is to build an Expression Tree for the expression and then print the infix… Read More
This article will focus on Java memory management, how the heap works, reference types, garbage collection, and also related concepts. Why Learn Java Memory Management?… Read More
Prerequisites: Method Overriding in java and Access Modifier in Java Method Overriding In any object-oriented programming language, Overriding is a feature that allows a subclass… Read More
Given an array arr[] of N integers and number of queries Q. The task is to answer three types of queries. Update [l, r] –… Read More
Dictionaries in Python is same as Associative arrays or Maps in other languages. Unlike lists, dictionaries stores data in key-value pair.Let’s see how to find… Read More
Given an array arr[] having 4 integer digits only. The task is to return the maximum 24 hour time that can be formed using the… Read More
Given an array of N positive elements, find the number of quadruples, (i, j, k, m) such that i < j < k < m… Read More
Given a positive integer n, the task is to find the sum of the first n natural numbers given that n is very large (1… Read More
WebRTC stands for Web Real-Time Communication. It is an open source and free project that used to provide real-time communication to mobile applications and web… Read More
Dijkstra’s algorithm is very similar to Prim’s algorithm for minimum spanning tree. Like Prim’s MST, we generate a SPT (shortest path tree) with a given… Read More
Prerequisite – Deadlock and Starvation  Livelock occurs when two or more processes continually repeat the same interaction in response to changes in the other processes… Read More
Given an integer n, the task is to check whether n is in binary or not. Print true if n is the binary representation else… Read More