All Easy Articles
CSS selectors are used to select HTML elements based on their element name, id, class, attribute, and many more.    Example: Below the HTML/CSS code… Read More
Given two numbers represented by two linked lists, write a function that returns sum list. The sum list is linked list representation of addition of… Read More
Given an array, the task is to remove the duplicate elements from the array using STL in C++ Examples: Input: arr[] = {2, 2, 2,… Read More
Operator overloading is a feature in object-oriented programming which allows a programmer to redefine a built-in operator to work with user-defined data types. Why Operator… Read More
In this article, we will convert a currency string to a double value with jQuery or Javascript. There are two popular ways to convert currency… Read More
In this article, we will sort an array of strings in Javascript. we will be given an array having strings as elements we need to… Read More
The Canvas class of Tkinter supports functions that are used to move objects from one position to another in any canvas or Tkinter top-level. Syntax:… Read More
In this article, we will see how to calculate yesterday’s date in JavaScript. To calculate yesterday’s date, you need to have some basic ideas of… Read More
Anonymous Inner Class: It is an inner class without a name and for which only a single object is created. An anonymous inner class can… Read More
The java.math.BigDecimal.setScale() is used to set the scale of BigDecimal. This method performs an operation upon the current BigDecimal by which this method is called.… Read More
Round 1: The first round was an online Coding/Programming test conducted on  mettl.com/. Many students across the country participated in this round. There were 3 questions… Read More
I interviewed for Google recently and here is my experience in detail. The interview process took around 5 months for completion as they provide you… Read More
Volatile Memory: It is the memory hardware that fetches/stores data at a high-speed. It is also referred as temporary memory. The data within the volatile memory… Read More
The main difference between Soft Computing and Hard Computing is their approach to solving complex problems: Hard Computing: Hard computing uses traditional mathematical methods to… Read More
Random Forest Regression is a versatile machine-learning technique for predicting numerical values. It combines the predictions of multiple decision trees to reduce overfitting and improve… Read More
Weighted kNN is a modified version of k nearest neighbors. One of the many issues that affect the performance of the kNN algorithm is the… Read More
Generic trees are a collection of nodes where each node is a data structure that consists of records and a list of references to its… Read More
Data binning, bucketing is a data pre-processing method used to minimize the effects of small observation errors. The original data values are divided into small… Read More
Q-Learning is required as a pre-requisite as it is a process of Q-Learning creates an exact matrix for the working agent which it can “refer… Read More
Alan Turing stated in 1947 that “What we want is a machine that can learn from experience.” And that was the beginning of Machine Learning.… Read More