All Basic Articles
Python defines type conversion functions to directly convert one data type to another. This article is aimed at providing the information about converting a string… Read More
Given string str, the task is to remove all non-alphanumeric characters from it and print the modified it.  Examples:  Input: @!Geeks-for'Geeks,123  Output: GeeksforGeeks123  Explanation: at… Read More
In this article, we are going to discuss SSTable which is one of the storage engines in Cassandra and SSTable components and also, we will… Read More
Reuse Oriented Model (ROM), also known as reuse-oriented development (ROD), it can be steps of the software development for specific duration in which software is… Read More
MongoDB is leading NoSQL database written in C++. It is high scalable and provides high performance and availability. It works on the concept of collections… Read More
In this article, we will use Python’s statsmodels module to implement Ordinary Least Squares(OLS) method of linear regression.Introduction : A linear regression model establishes the relation… Read More
Given a permutation arrays A[] consisting of N numbers in range [1, N], the task is to left rotate all the even numbers and right… Read More
Whatsapp is the one of most popular messaging App. Many android applications need the functionality to share some messages directly from their app to WhatsApp.… Read More
Node.js is an open-source project widely used for the development of dynamic web applications. The URLSearchParams API in Node.js allows read and write operations on… Read More
Node.js: Node.js a library that is used to create runtime applications. It was initially written by Rayn Dahl for using the JavaScript outside the browser… Read More
There are many different ways to install node.js on a computer. The simplest method to verify whether node.js has been properly installed in your computer… Read More
In this article, we will learn about the different methods to access the value of the input text box entered by the user using jQuery.… Read More
A library refers to a collection of modules that together cater to a specific type of needs or application. Module is a file(.py file) containing… Read More
Data visualization is actually a set of data points and information that are represented graphically to make it easy and quick for user to understand.… Read More
A function is basically a group of code that can be reused anywhere in the program, which generally saves the excessive use of memory and… Read More
In this article, we are going to discuss Cassandra and Relational overview in which we will cover and able to learn how Cassandra differentiates the… Read More
The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version… Read More
Seaborn is a Python data visualization library based on matplotlib. It provides a high-level interface for drawing attractive and informative statistical graphics. The colors stand… Read More
In regression models, our objective is to discover a model that can make predictions that closely resemble the actual target values. Basically, we try to… Read More
Given a string str, the task is to check if the given string is Even-Odd Palindrome or not.  An Even-Odd Palindrome string is defined to… Read More