All Easy Articles
The word Internet of Things (IoT) is made up of two main parts- Internet which is the backbone of connectivity and Things meaning objects or… Read More
Consider a grid of dimensions NxM and an array R consisting of available circular obstacles, the task is to find the minimum number of circular… Read More
Prerequisites: Python Programming Language There are several libraries and techniques available in Python for the conversion of Video to Audio. One such library is Movie… Read More
Flask is a web application framework written in Python. Flask is based on the Werkzeug WSGI toolkit and Jinja2 template engine. Both are Pocco projects.… Read More
A list in Python is a linear data structure that can hold heterogeneous elements that do not require to be declared and are flexible to… Read More
Hey folks! I am here to share my Interview Experience of Wipro NLTH 2020 whose online assessment was conducted on 20-OCT-2019 at PSIT, Kanpur (**While… Read More
Given two sorted arrays, arr1[] and arr2[], the task is to merge them in O(Nlog(N) + Mlog(M)) time with O(1) extra space into a sorted… Read More
Flyweight method is a Structural Design Pattern that focus on minimizing the number of objects that are required by the program at the run-time. Basically,… Read More
Dictionary in Python is an unordered collection of data values that are used to store data values like a map. Unlike other Data Types that… Read More
Composite Method is a Structural Design Pattern which describes a group of objects that is treated the same way as a single instance of the… Read More
Statistical analysis plays a crucial role in understanding and interpreting data across various disciplines. Two prominent approaches in statistical analysis are Parametric and Non-Parametric Methods.… Read More
Given an array arr[] consisting of integers of length N and an integer K (1 ? k ? N), the task is to find the… Read More
DFA or Deterministic Finite Automata is a finite state machine which accepts a string(under some specific condition) if it reaches a final state, otherwise rejects… Read More
Error is an illegal operation performed by the user which results in the abnormal working of the program. Programming errors often remain undetected until the… Read More
Given the coordinates of two endpoints A(x1, y1), B(x2, y2) of the line segment and coordinates of a point E(x, y); the task is to… Read More
There are various ways to evaluate a machine-learning model. We can use MSE (Mean Squared Error) for Regression; Precision, Recall, and ROC (Receiver of Characteristics)… Read More
Prerequisite: Python Turtle Basics turtle is an inbuilt module in python. It provides drawing using a screen (cardboard) and turtle (pen). To draw something on… Read More
Pervasive Computing is also called as Ubiquitous computing, and it is the new trend toward embedding everyday objects with microprocessors so that they can communicate… Read More
In Perspective Transformation, we can change the perspective of a given image or video for getting better insights into the required information. In Perspective Transformation,… Read More
Given an array of distinct integers arr[]. The task is to find a triplet(a group of 3 elements) that has the minimum sum.Note: The size… Read More