All Medium Articles
Given two polynomials in the form of linked list. The task is to find the multiplication of both polynomials. Examples:  Input: Poly1: 3x^2 + 5x^1… Read More
In Java, there are two types of threads: Daemon Thread User Thread Daemon threads are low priority threads which always run in background and user… Read More
Given a string of length N of lowercase characters containing 0 or more vowels, the task is to find the count of vowels that occurred… Read More
Given a positive integer N. The task is to find the sum and product of digits of the number which evenly divides the number n.… Read More
The float type in Python represents the floating point number. Float is used to represent real numbers and is written with a decimal point dividing… Read More
The !important property in CSS is used to provide more weight (importance) than normal property. In CSS, the !important means that “this is important”, ignore… Read More
I applied through college, our TPO gave link for applying. All interviews take place at their Office (Gurgaon, India) Total Interview Rounds: 5 rounds in… Read More
Given a perimeter P and area A, the task is to calculate the maximum volume that can be made in form of cuboid from the… Read More
Given an array arr of n elements, the task is to find the number of the sub-arrays of the given array that contain at least… Read More
The class name is used as a selector in HTML which helps to give some value to the element attributes. The document.getElementById() method is used… Read More
Given an array A[] of integers. The task is to find the total number of ordered pairs of positive integers (X, Y) such that X… Read More
Volley is an HTTP library that makes networking very easy and fast, for Android apps. It was developed by Google and introduced during Google I/O… Read More
Given an integer n and a set of characters A of size k, find a string S such that every possible string on A of… Read More
Given two arrays of integers arr and P such that after a cycle an element arr[i] will be at location arr[P[i]]. The task is to… Read More
Given a string S and a character X where , for some . The task is to return an array of distances representing the shortest distance from… Read More
Today, developing an application using different servers depending on the environment that is to be used is a tricky job. Applications may work fine on… Read More
When a Programmer writes a program, it is fed into the computer and how does it actually work?  So, this article is about the process… Read More
This method is used to retrieve all the elements that match the conditions defined by the specified predicate.Syntax:   public static T[] FindAll (T[] array, Predicate… Read More
When we talk about Artificial Intelligence, it’s easy to imagine some dystopian science fiction future where robots have taken over the world and enslaved us.… Read More
Given a Hexadecimal number, the task is to convert it into an Octal number.Examples:  Input: Hexadecimal = 1AC Output: Binary = 0654 Explanation: Equivalent binary… Read More