All Basic Articles
LEN() function calculates the number of characters of an input string, excluding the trailing spaces. Syntax : LEN(input_string) Parameter – This method accepts a single-parameter… Read More
In this article, we are going to see how to Scrape Google Search Results using Python BeautifulSoup. Module Needed: bs4: Beautiful Soup(bs4) is a Python… Read More
Symmetric and Skew Symmetric Matrices are the types of square matrices based on the relation between a matrix and its transpose. These matrices are one… Read More
MySQL server is an open-source relational database management system which is a major support for web-based applications. Databases and related tables are the main component… Read More
The images, CSS files, JavaScript files, and other files that the client downloads from the server are known as static files. These static files can… Read More
Cookies are small data that are stored on the client side and sent to the client along with server requests. With the help of the… Read More
The frequency of an element in an array is the count of the occurrence of that particular element in the whole array. Given an array… Read More
The octal numbers are numbers with 8 bases and use digits from 0-7. This system is a base 8 number system. The decimal numbers are… Read More
In Java, reversing a number means that the digit at the first position should be swapped with the last digit, the second digit will be… Read More
Given two strings. The task is to find the larger string without using built-in functions. Examples: Input: GeeksforGeeks Geeks Output: GeeksforGeeks Input: GeeksForFeeks is an… Read More
Pandas is an open-source library that is built on top of NumPy library. It is a Python package that offers various data structures and operations… Read More
Kernel Density Estimate (KDE) Plot is a powerful tool for estimating the probability density function of continuous or non-parametric data. KDE plot is implemented through… Read More
Lists are just like dynamically sized arrays, declared in other languages (vector in C++ and ArrayList in Java). Lists need not be homogeneous always which… Read More
Plots are an effective way of visually representing data and summarizing it beautifully. However, if not plotted efficiently it seems appears complicated. Python’s Matplotlib provides… Read More
Files are used in order to store data permanently. File handling is performing various operations (read, write, delete, update, etc.) on these files. In Python,… Read More
In this article, we will write a python program to input a date and check whether it is a valid date or not. If it… Read More
This is an app that will provide us with Facts. With Python, we can make things very easy. We have a very amazing library so… Read More
Both title() and capitalize() have similar functionality of capitalizing first characters. Let us see the difference between the two of them. Method 1: title()  … Read More
In this article, we will try to insert records and check if they EXISTS or not. The EXISTS condition in SQL is used to check… Read More
Given an array of strings arr[] of size N, the task is to print all the distinct strings present in the given array.  Examples: Input:… Read More