All Easy Articles
Kotlin KOTLIN is a cross platform, statically types, general purpose programming language with type inference. KOTLIN is designed to interoperate fully with java but type… Read More
Given a string str, the task is to find the XOR of ASCII values of characters in the string. Examples:  Input: str = “Geeks” Output: 95 ASCII… Read More
Hi, after reviewing your application, we have shortlisted your profile for the Telephonic Interview. If you’re in a league of job hunting currently (or in… Read More
HyperlinkedModelSerializer is a layer of abstraction over the default serializer that allows to quickly create a serializer for a model in Django. Django REST Framework… Read More
In this article, we will know the approaches to get the current time in Python. There are multiple ways to get it. The most preferably… Read More
World Health Organization has estimated that four out of five cardiovascular disease (CVD) deaths are due to heart attacks. This whole research intends to pinpoint… Read More
Lifecycle phases consist of various separated modules with defined functionalities. Lifecycle phases describe the various phases of project management. Phases of Project Management – A… Read More
Prerequisite – States of a Process in Operating Systems  There are two basic operations that can be performed on a process: Creation and Deletion. They… Read More
Given an integer N which represents an N x N Square Matrix, the task is to print the number of ways to move from top… Read More
Who wouldn’t want to be a great leader in their respective field? Yes, almost everyone wants!! In fact, a leader is someone that we aspire… Read More
Ruby is a object-oriented, reflective, general-purpose, dynamic programming language. Ruby was developed to make it act as a sensible buffer between human programmers and the… Read More
Matplotlib is a plotting library for creating static, animated, and interactive visualizations in Python.   Matplotlib.pyplot.vlines()   matplotlib.pyplot.vlines() is a function used in the plotting of… Read More
As we know Nearest Neighbour classifiers stores training tuples as points in Euclidean space. But Case-Based Reasoning classifiers (CBR) use a database of problem solutions… Read More
During concurrent execution of processes, processes need to enter the critical section (or the section of the program shared across processes) at times for execution.… Read More
The crypto.randomBytes() method is used to generate cryptographically well-built artificial random data and the number of bytes to be generated in the written code. Syntax: … Read More
The world is facing one of the worst epidemics, the outbreak of COVID-19, you all are aware of that and this is not the first… Read More
Given an array arr[] of size N, the task is to find the length of the longest increasing subsequence in the array formed by the… Read More
Given a number N, the task is to print its multiplication table using recursion. Examples   Input: N = 5 Output: 5 * 1 = 5 5 * 2 =… Read More
Selection Algorithm is an algorithm for finding the kth smallest (or largest) number in a list or an array. That number is called the kth… Read More
Given an array arr[] of positive and negative numbers only. The task is to find the length of the longest alternating (means negative-positive-negative or positive-negative-positive)… Read More