All Easy Articles
Given a fraction series. Find the H.C.F of a given fraction series.  Examples:  Input : [{2, 5}, {8, 9}, {16, 81}, {10, 27}] Output :… Read More
MySQL supports another type of pattern matching operation based on the regular expressions and the REGEXP operator. It provide a powerful and flexible pattern match… Read More
Given a tree, print the level order traversal in sorted order. Examples :  Input : 7 / \ 6 5 / \ / \ 4… Read More
Given a non-negative number represented as an array of digits, add 1 to the number ( increment the number represented by the digits ). The… Read More
Internationalization(I18N) is the process of designing web applications in such a way that which provides support for various countries, various languages, and various currencies automatically… Read More
A pipe is a form of redirection (transfer of standard output to some other destination) that is used in Linux and other Unix-like operating systems… Read More
Given a sentence in the form of a string, convert it into its equivalent mobile numeric keypad sequence.  Examples :  Input: GEEKSFORGEEKSOutput: 4333355777733366677743333557777Explanation: For obtaining… Read More
Sometimes we need to convert string values in a pandas dataframe to a unique integer so that the algorithms can perform better. So we assign… Read More
The JavaScript trim() method removes whitespace from both ends of a string and returns the trimmed string. The whitespace includes spaces, tabs, and newlines. This… Read More
Program for finding the sum of the nth term of the series (n^2-1^2) + 2(n^2-2^2) + 3(n^2-3^2) + ….n(n^2-n^2)  Examples:  Input : 2 Output :3… Read More
A number is said to be sandwiched between primes if the number just after it and the number just before are Prime numbers. So, a… Read More
Why Subtraction is allowed? Two addresses can be subtracted because the memory between the two addresses will be valid memory. Let’s assume memory Ptr_1 and ptr_2… Read More
Given a string of binary characters, check if it is multiple of 3 or not.Examples :  Input : 1 0 1 0 Output : NO… Read More
Swap all the pair of bits in a byte. Before swapping: 11-10-11-01 After swapping: 11-01-11-10Examples:   Input : 00000010 Output : 00000001 Input : 00000100 Output… Read More
Que – 1. For 8 keys and 6 slots in a hashing table with uniform hashing and chaining, what is the expected number of items… Read More
Que – 1. The function shiftNode() which takes as input two linked lists- destination and source. It deletes front node from source and places it… Read More
Given a number n, check if it is divisible by 8 using bitwise operators. Examples:   Input : 16 Output :YES Input :15 Output :NO   Recommended… Read More
Array classes are generally more efficient, light-weight and reliable than C-style arrays. The introduction of array class from C++11 has offered a better alternative for… Read More
Implement Priority Queue using Linked Lists.  push(): This function is used to insert a new data into the queue. pop(): This function removes the element… Read More
Linux, renowned for its robust command-line interface, provides a suite of powerful tools for efficient file and directory management. Among these, the “find” command stands… Read More