All Easy Articles
When you execute a recursive function in Python on a large input ( > 10^4), you might encounter a “maximum recursion depth exceeded error”. This… Read More
Kerberos provides a centralized authentication server whose function is to authenticate users to servers and servers to users. In Kerberos Authentication server and database is… Read More
Given a string str and a character ch, the task is to find the longest palindromic sub-string of str such that it starts and ends… Read More
Hello GATE 2020 Aspirants ! GATE exam is just a few months away, so GeeksforGeeks is here to help you gauge your GATE preparation and… Read More
Given two strings str1 and str2 and an integer d, the task is to check whether str2 can be obtained by rotating str1 by d… Read More
Prerequisite: Pointers in Go and Passing Pointers to Function Pointers in Go programming language or Golang is a variable which is used to store the… Read More
Given an integer N, the task is convert and print the binary equaiva;ent of N.Examples:   Input: N = 13 Output: 1101Input: N = 15 Output: 1111    … Read More
Given an array, arr[] of size N and an integer K which means there are N piles of coins and the ith contains arr[i] coins.… Read More
Macro instruction is a notational convenience for the programmer. For every occurrence of macro, the whole macro body or macroblock of statements gets expanded in… Read More
As we know, Python is a popular scripting language because of its versatile features. In this article, we will write a Python script to restart… Read More
Regular Expressions are a fundamental part of almost every programming language and Kotlin is no exception to it. In Kotlin, the support for regular expression… Read More
Gated Recurrent Unit (GRU) is a type of recurrent neural network (RNN) that was introduced by Cho et al. in 2014 as a simpler alternative… Read More
Today, different Machine Learning techniques are used to handle different types of data. One of the most difficult types of data to handle and the… Read More
In Windows Forms, ListBox control is used to show multiple elements in a list, from which a user can select one or more elements and… Read More
C#
Polygons Polygons are planes figures formed by a closed series of rectilinear segments. Ex– Triangle, Rectangle etc. Properties: 1. Sum of all the angles of a polygon… Read More
Given an integer N, the task is to find an integer M formed by taking the rightmost set bit in N i.e. the only set… Read More
In math, an average is the middle value of a group of numbers. It’s calculated by adding up all the numbers and then dividing by… Read More
Addition of keys in dictionaries have been discussed many times, but sometimes, we might have a problem in which we require to alter/add keys in… Read More
Cryptography is technique of securing information and communications through use of codes so that only those person for whom the information is intended can understand… Read More
In C#, Split() is a string class method. The Split() method returns an array of strings generated by splitting of original string separated by the… Read More