All Easy Articles
Prerequisite: Read a file line-by-line in PythonGiven a text file fname, a number N, the task is to read the last N lines of the… Read More
Pandas is an open-source library that is built on top of NumPy library. It is a Python package that offers various data structures and operations… Read More
R-CNN: R-CNN was proposed by Ross Girshick et al. in 2014 to deal with the problem of efficient object localization in object detection. The previous… Read More
Given a binary tree and an integer K, the task is to print the paths from root to leaf with the maximum element greater than… Read More
Given a number N, the task is to print all the factors of N using recursion.Examples:   Input: N = 16 Output: 1 2 4 8 16 Explanation: 1,… Read More
Pandas is an open-source Python Library that is made mainly for working with relational or labelled data both easily and intuitively. This Python library is… Read More
In this article, we will discuss how to use JavaScript variables in jQuery selectors. In the following examples, it can be seen that we have… Read More
Network Engineering is always in high demand and a very rapidly growing field to work in. In India, the average salary of Network Engineers is… Read More
Project Evaluation and Review Technique (PERT) depicts the activities and schedule of the activities or tasks through a network diagram. PERT is used to estimate… Read More
Automated Testing is the technique for automating the manual testing process. In this process, manual testing is replaced by the collection of automated testing tools.… Read More
Free Software:  “Free software” means software that respects users’ freedom and community. Roughly, it means that the users have the freedom to run, copy, distribute,… Read More
A bouncing ball can be created by using HTML, CSS, and JavaScript and performing some bouncing operations on that ball. You can see a related… Read More
Given two matrices A and B of same size, the task to add them in Java. Examples:  Input: A[][] = {{1, 2}, {3, 4}} B[][] =… Read More
In Java, Matrix Multiplication is a complex operation, unlike multiplying two constant numbers. In this article, we will learn How to multiply two matrices in Java.… Read More
Pre-requisite: Separate Chaining, STL in C++ This article implements the Separate Chaining in Hashing with help of STL in C++ without the use of pointers.… Read More
Prerequisite: Pointers in C Pointers are used to point to address the location of a variable. A pointer is declared by preceding the name of… Read More
The primary goal of a compiler is to reduce the cost of compilation and to make debugging produce the expected results. Not all optimizations are… Read More
Sometimes, while working with data, we can have a problem in which we need to perform the sorting of rows of the matrix in descending… Read More
Sometimes, in the process of data filtering we have a problem in which we need to remove words which are composite of certain letters. This… Read More
The problem of finding the summation of digits of numbers is quite common. This can sometimes come in form of a list and we need… Read More