All Easy Articles
Given an array arr[] consisting of N integers, the task is to find all the array elements which occurs more than floor (n/3) times. Examples:… Read More
This is my interview experience for DE Shaw India. They visited our campus for the 2020-2021 session. The whole interview process is done virtually due… Read More
In this article, we will build a coin flipping application. In which the user can flip a coin and get a random result from head… Read More
There are two types of form, one is uncontrolled form and another one is controlled form. In uncontrolled form values of the input field stored… Read More
Prerequisite: heapq module The heapq module has several functions that take the list as a parameter and arranges it in a min-heap order. The problem… Read More
Round 1 : Online Test The first round consisted of two parts : a) Objective round : This was a 50 minutes test that comprised… Read More
Adobe visited our campus for an on-campus internship. First-round they conducted an online test of which there are 16 MCQ’s and 2 coding. Both coding… Read More
ER Diagram is known as Entity-Relationship Diagram, it is used to analyze  the structure of the Database. It shows relationships between entities and their attributes.… Read More
The candidate elimination algorithm incrementally builds the version space given a hypothesis space H and a set E of examples. The examples are added one… Read More
A thread is an entity within a process that can be scheduled for execution. Also, it is the smallest unit of processing that can be… Read More
Prerequisite – Classes and Objects in Python This article will compare and highlight the features of is-a relation and has-a relation in Python. What is… Read More
Yes, it is possible with the help of terminal and some modules in Python through which one can shut down a PC by just using… Read More
The pandas.concat() function does all the heavy lifting of performing concatenation operations along with an axis of Pandas objects while performing optional set logic (union… Read More
Sys is a built-in Python module that contains parameters specific to the system i.e. it contains variables and methods that interact with the interpreter and… Read More
NumPy provides various functions to combine arrays. In this article, we will discuss some of the major ones. numpy.concatenate numpy.stack numpy.block Method 1: Using numpy.concatenate()… Read More
Python does not support explicit multiple constructors, yet there are some ways to achieve multiple constructors. We use Python’s inbuilt __init__ method to define the… Read More
Pygame is a Python library designed to develop video games. Pygame adds functionality on top of the excellent SDL library. This allows you to create… Read More
Let us see how to control the increment in for-loops in Python. We can do this by using the range() function. range() function range() allows… Read More
In Python, you can neatly arrange a list of words with numbers by using special methods for sorting. Just look at the numbers in each… Read More
The stock price is the highest amount someone is willing to pay for the stock. In this article, we are going to write code for… Read More