All Easy Articles
Given a list of integers, the task is to find N largest elements assuming size of list is greater than or equal o N.  Examples… Read More
scikit-image is an image processing Python package that works with NumPy arrays which is a collection of algorithms for image processing. Let’s discuss how to… Read More
C# is a general-purpose, modern and object-oriented programming language pronounced as “C sharp”. It was developed by Microsoft led by Anders Hejlsberg and his team… Read More
Tic-tac-toe is a very popular game, so let’s implement an automatic Tic-tac-toe game using Python. The game is automatically played by the program and hence,… Read More
The Digital Subscriber Line (DSL), originally, a digital subscriber loop is a communication medium, which is used to transfer the internet through copper wire telecommunication… Read More
Problem: Write an assembly language program to add two 16 bit numbers by using:  8-bit operation16-bit operation Example: 1. Addition of 16-bit numbers using 8-bit… Read More
Let A[1…n] be an array of n distinct numbers. If i < j and A[i] > A[j], then the pair (i, j) is called an… Read More
The number of different binary trees with 6 nodes is ______. (A) 6 (B) 42 (C) 132 (D) 256 Answer: (C) Explanation: The number of… Read More
Given N and M, task is to find whether numbers 1 to N can be divided into two sets such that the absolute difference between… Read More
Given a string str, the task is to print longest palindrome word present in the string str.Examples:  Input : Madam Arora teaches Malayalam Output: Malayalam Explanation: The… Read More
Looping in a programming language is a way to execute a statement or a set of statements multiple times depending on the result of the… Read More
The Master Theorem is a tool used to solve recurrence relations that arise in the analysis of divide-and-conquer algorithms. The Master Theorem provides a systematic… Read More
Problem – Write an assembly language program in 8086 microprocessor to divide a 16 bit number by an 8 bit number. Example – Algorithm –… Read More
Inrtoduction : The 8085 microprocessor is a popular 8-bit microprocessor that was first introduced by Intel in 1976. It has a set of instructions that… Read More
A Multistage graph is a directed, weighted graph in which the nodes can be divided into a set of stages such that all edges are… Read More
The date.setMonth() method is used to set month into a date object which is created using the Date() constructor.  Syntax: DateObj.setMonth(month_Value); Parameter: This method accepts… Read More
Java, being a platform-independent programming language, doesn’t work on the one-step compilation. Instead, it involves a two-step execution, first through an OS-independent compiler; and second,… Read More
Prerequisite – Registers of 8085 microprocessor The Flag register is a Special Purpose Register. Depending upon the value of the result after any arithmetic and… Read More
Introduction : A microprocessor is a multipurpose, programmable, clock-driven, register-based electronic device that reads binary instructions from a storage device called memory, accepts binary data… Read More
Cauchy’s Mean Value theorem provides a relation between the change of two functions over a fixed interval with their derivative. Cauchy Mean Value Theorem is… Read More