All Basic Articles
Given two integers X and Y and an array of N integers. Player A can decrease any element of the array by X and Player… Read More
Given an integer n, the task is to find the number of possible values of 0 ? x ? n which satisfy n XOR x… Read More
Given a matrix mat[][] containing the characters Z, P and * where Z is a zombie, P is a plant and * is a bare… Read More
Given a pattern pat and a string array sArr[], the task is to count the number of strings from the array that ends with the… Read More
Removing spaces from a string involves eliminating any whitespace characters within the string. This can be accomplished using various methods in Python like replace(), translate(),… Read More
Given a list N, the task is to sort all the elements in odd and even positions in increasing order. After sorting, we need to… Read More
Given a List, the task is to remove the last element from this List in C++. Examples: Input: list = [10 20 30 70 80… Read More
Pandas Series is a one-dimensional labeled array capable of holding data of any type (integer, string, float, python objects, etc.). Labels need not be unique… Read More
Pandas Series is a one-dimensional labeled array capable of holding data of any type (integer, string, float, python objects, etc.). The axis labels are collectively… Read More
Inheritance is an important pillar of OOP(Object Oriented Programming). It is the mechanism in Scala by which one class is allowed to inherit the features(fields… Read More
Neural Networks are computational models that mimic the complex functions of the human brain. The neural networks consist of interconnected nodes or neurons that process… Read More
The content property in CSS is used to generate the content dynamically (during run time) ie., it replaces the element with generated content value. It… Read More
JSON or JavaScript Object Notation is a lightweight format for transporting and storing data. JSON is used when data is transferred from a server to… Read More
Perl is a general purpose, high level interpreted and dynamic programming language. It was developed by Larry Wall, in 1987. Perl was originally developed for… Read More
Given an integer N, the task is to check if its equivalent binary number has an equal frequency of consecutive blocks of 0 and 1.… Read More
Game Playing is an important domain of artificial intelligence. Games don’t require much knowledge; the only knowledge we need to provide is the rules, legal… Read More
Given a string str and an integer X. The task is to reverse the middle X characters of the given string and then print the… Read More
What Are IDEs and Code Editors : IDE is a combination of tools that help in software development. IDE makes coding easier. As the name… Read More
Directory management constitutes the functions dealing with organization and maintenance of various directories. Directories usually contain files of any type, but this may vary between… Read More
Writing your own WordPress template from scratch is fairly simple. If you are into Web Development industry, you might’ve already heard what “WordPress” is. Maybe… Read More