All Expert Articles
Given an array arr[] of N integers, the task is to print all the element of Longest Dividing Subsequence formed by the given array. If… Read More
Quotient Remainder Theorem states that for any pair of integers a and b (b is positive), there exists two unique integers q and r such… Read More
Given a list of characters and an array of strings, find the total length of all strings in the array of strings that can be… Read More
The bit_xor is an inbuilt function in C++ which is used to perform bitwise_xor and return the result after applying the bitwise_xor operation on it’s… Read More
AnimatedVectorDrawable class was introduced in API 21 and is used to animate Vector Drawables beautifully and easily. Using AnimatedVectorDrawable, one can: Rotate, Scale, Translate VectorDrawables… Read More
Hawk-Eye is the most ultra-modern tool employed in any sport. Hawk-Eye first made its name in Cricket Television broadcast, yet the brand has multiform into… Read More
Given an integer N, the task is to find the number of permutations of first N positive integers such that prime numbers are at prime… Read More
A map in Golang is a collection of unordered pairs of key-value. It is widely used because it provides fast lookups and values that can… Read More
Introduction:  Probabilistic Data Structures are data structures that provide approximate answers to queries about a large dataset, rather than exact answers. These data structures are… Read More
Given N cities that are connected using N-1 roads. Between Cities [i, i+1], there exists an edge for all i from 1 to N-1.The task… Read More
Given a graph with N nodes and their values defined in array A, the task is to find the largest component size in a graph… Read More
Given a binary string S consisting of only 0’s and 1’s. Count the number of substrings of this string such that the length of the… Read More
The sync-sql module is designed to make synchronous queries to the database. Since normal SQL queries are asynchronous in node.js but if you want to… Read More
Session management can be done in node.js by using the express-session module. It helps in saving the data in the key-value form. In this module,… Read More
Joi module is a popular module for data validation. This module validates the data based on schemas. There are various functions like optional(), required(), min(),… Read More
The blur text animation is known as the Smoky effect and it is used to give our text a blurry animation. The text blurs linearly… Read More
Hello guys, I’m currently a final year undergrad from Tier 2 engineering college and this is my internship interview experience with Microsoft. Firstly, there was… Read More
Handlebars is a template engine that is widely used and easy to use. The pages contain .hbs extension and there are many other template engines… Read More
Both decodeURI() and decodeURIComponent() are Javascript global functions that are used for decoding encoded URI (Uniform Resource Identifier).  JavaScript decodeURI() function: It decodes a string… Read More