All Hard Articles
Telephonic Interview due to COVID-19  Round 1 :   Merge Sort, internal functioning, its complexity.   A SQL query was given, I need to find its result.  … Read More
The task is to display a spinner on the page until the response from the API comes. Here we will be making a simple CSS… Read More
Declarations: These are the set of components, directives, and pipes (declares) that belong to the (this) module. These components are in the local scope (private… Read More
VPython makes it easy to create navigable 3D displays and animations, even for those with limited programming experience. Because it is based on Python, it… Read More
The Dark Web is that part of the internet where all the illegal works are done. You can access to the dark web through TOR(The… Read More
With the help of sympy.stats.Poisson() method, we can get the random variable representing the poisson distribution. Syntax : sympy.stats.Poisson(name, lambda) Return : Return the random… Read More
Everything in Python is an object. Even function is a type of object in Python. Decorators are a special type of function which return a… Read More
Given a Binary Search Tree and a binary integer K, the task is to convert Binary search tree into a Skewed Tree in increasing order… Read More
Given an array arr[], the task is to find the maximum sum of all the elements which are not a part of the longest increasing… Read More
Given an undirected graph G, the task is to find the shortest path of even-length, given 1 as Source Node and N as Destination Node.… Read More
Given a number N, the task is to find the count of unique ways to split it into different parts. Note: {2, 1} and {1,… Read More
Given two strings S1 and S2 of equal length, the task is to determine if S2 is a scrambled form of S1.Scrambled string: Given string str,… Read More
Program is a sequence of instructions written by the user that instructs the computer to perform the task of solving some problem. We will now… Read More
Given an array arr[] of length N, the task is to check if it can be formed by merging two permutations of the same or… Read More
Given a string S of lowercase letters, the task is to find the length of the longest palindromic subsequence made up of two distinct characters… Read More
Given a number N, the task is to print the Nth Hogben number. Hogben Number: In a spiral arrangement of the integers, Hogben Numbers appear… Read More
Adding Bootstrap to your Angular application is an easy process. Just write the following command in your Angular CLI. It will add bootstrap into your… Read More
This problem can be solved by using input tags having the same “name” attribute value that can group multiple values stored under one name which… Read More
Given a string str, the task is to find the longest palindromic prefix of the given string. Examples:  Input: str = “abaac” Output: aba Explanation: The longest prefix… Read More
Predictive analysis in R Language is a branch of analysis which uses statistics operations to analyze historical facts to make predict future events. It is… Read More