All Basic Articles
Generally, if we want to send a WhatsApp message to any number registered on WhatsApp we have to start a chat from the contacts page.… Read More
Given a string S consisting of uppercase and lowercase letters, the task is to check if uppercase characters are used correctly in the given string… Read More
Round 1 (Online Assessment Test): Pseudo Code: This section comprises 25 MCQ’s which include the basic pseudocode questions and data structures related questions. The duration… Read More
Consider the following ANSI C function: int SimpleFunction(int Y[], int n, int x) { int total = Y[0], loopIndex; for (loopIndex=1; loopIndex
In this article, we will be adding a Range Slider in Android. A Range Slider is used to select a value from a range of… Read More
Pagination is one of the most important factors which helps to reduce the loading time inside our app and increase the performance of our data… Read More
Unit testing is done to ensure that developers write high-quality and errorless code. It is advised to write Unit tests before writing the actual app,… Read More
Given an array, arr[] of size N and a positive integer M, the task is to find the maximum subarray product modulo M and the… Read More
In this article, we will discuss the use of “using namespace std” in the C++ program. Need of namespace: As the same name can’t be… Read More
When we are building a complex application in Android Studio, then it is always preferable to have a basic idea about the different shortcut keys… Read More
Android Studio is the official IDE (Integrated Development Environment) for Android app development and it is based on JetBrains’ IntelliJ IDEA software. Android Studio provides… Read More
Given an integer N, the task is to count the number of ways in which N can be expressed as an exponent, i.e., xy, where… Read More
Given an integer N, the task is to sort the digits in ascending order. Print the new number obtained after excluding leading zeroes. Examples: Input:… Read More
In this article, we will discuss how to create a custom avatar using Python. In order to perform this task. You don’t have to create… Read More
We can use matplotlib to Plot live data with Matplotlib. With the help of matplotlib.pyplot.draw() function we can update the plot on the same figure… Read More
In this article, we will discuss how to spot differences between two given images using python. In order to perform this task, we will be… Read More
Pygame is a Python library designed to develop video games. Pygame adds functionality on top of the excellent SDL library. This allows you to create… Read More
ggplot2 is an R Package that is dedicated to Data visualization. ggplot2 Package  Improve the quality and the beauty (aesthetics) of the graph. By Using… Read More
Matplotlib is a Python library that offers us various functions using which we can plot our data and visualize it graphically. But often plotting a… Read More
Given two lists, the task is to write a Python program to extract all the strings which are possible substring to any of strings in… Read More