All Medium Articles
A user’s first interaction with any website starts with its frontend part. Today in web development most of the developers don’t want to spend days… Read More
Using loops in Python automates and repeats the tasks in an efficient manner. But sometimes, there may arise a condition where you want to exit… Read More
Given an array arr[] of N elements and a positive integer K such that K ≤ N. The task is to find the number of… Read More
Sometimes while working in Python, we can have problems of the interconversion of data. This article talks about the conversion of list of List Strings… Read More
Given a binary tree, the task is to find the bottom view of a binary tree using recursion. Examples: Input: 1 \ 2 \ 4… Read More
Given an array of infinite length and two integers M and N which are co-primes, the task is to find the number of positions that… Read More
This Golang tutorial provides you with all the insights into Go Language programming, Here we provide the basics, from how to install Golang to advanced… Read More
PHP Multidimensional array is used to store an array in contrast to constant values. Associative array stores the data in the form of key and… Read More
In this article, we’ll see how to make both a simple and relatively advanced web-crawler (or spider-bot) in PHP. The simpler one will simply output… Read More
The HTTP headers are used for passing additional information with an HTTP request or response between the client and the server. They are grouped as… Read More
Python is an Object oriented programming language i.e everything in Python is an object. There are special kind of methods in Python known as magic… Read More
We have already discussed some questions in jQuery Interview Questions and Answers | Set-1 Below are some more related questions: What are the basic selectors… Read More
Creating a search bar using HTML and CSS is easy. A search bar is a common component found in navigation menus, allowing users to search… Read More
Github….facebook for developers. Giving this name to this amazing site is not injustice. Afterall this site not only helps you to host your code with… Read More
Given a connected acyclic graph with N nodes and N-1 edges, find out the pair of nodes that are at even distance from each other.… Read More
Given two integers A and B, the task is to find an integer X such that (X XOR A) is minimum possible and the count… Read More
Given an array arr[] of N integers where arr[i] is the height of the ith chocolate and all the chocolates are 1 unit wide, the… Read More
The main aim for us to storing the data in a computer system is to reduce the amount of memory space the data would occupy.HP… Read More
Given an array, the task is to form a spiral matrix  Examples:  Input: arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9,… Read More
The getKey() method of java.security.KeyStore class is used to get the key associated with the given alias, using the given password to recover it. Syntax:… Read More