All Basic Articles
All Java Development in the IDE takes place within Projects, we first need to create a new project within which to store sources and other… Read More
Google Play Install Referrer is the API that is used in most of the applications but it is not been seen in the app. This… Read More
Ruby on Rails or also known as rails is a server-side web application development framework that is written in the Ruby programming language, and it… Read More
Snippets are the small portion of re-usable code wrapped in some prefix word, It allows programmers to bind a particular block of code in a… Read More
The date-and-time.Date.addYears() is a minimalist collection of functions for manipulating JS date and time module which is used to add the extra years to the… Read More
Bitwise operators are operators (just like +, *, &&, etc.) that operate on ints and units at the binary level. This means they look directly… Read More
Given a decimal number N, convert N into an equivalent hexadecimal number i.e. convert the number with base value 10 to base value 16. The… Read More
Prerequisite: Tkinter PIL Python offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI methods, Tkinter is the most commonly used… Read More
Prerequisite: requests BeautifulSoup In this article, we will discuss web scraping of videos using python. For web scraping, we will use requests and BeautifulSoup Module… Read More
In this article, we will discuss the overview of Parallel Databases and then will emphasize their needs and advantages, and then finally, will cover the… Read More
1. C++ :C++ or CPP is a general-purpose statically typed object-oriented programming language. In 1980, C++ was developed by Bjarne Stroustrup at bell laboratories of… Read More
The full form of PHP is a Hypertext preprocessor. It was developed by Rasmus Lerdorf. It is a programming language for developing dynamic web applications… Read More
Sometimes, we need to get the last modification time of the current page in PHP for different uses. Since we are using PHP, we can… Read More
JavaScript is a synchronous (Moves to the next line only when the execution of the current line is completed) and single-threaded (Executes one command at… Read More
JavaScript Promises are used to handle asynchronous operations in JavaScript. They are easy to manage when dealing with multiple asynchronous operations where callbacks can create… Read More
React.js library is all about splitting the app into several components. Each Component has its own lifecycle. React provides us some in-built methods that we… Read More
The process object is one of the few global objects provided by the NodeJS core API. It can be accessed from anywhere, thus its methods… Read More
Caching is a system design concept that involves storing frequently accessed data in a location that is easily and quickly accessible. The purpose of caching… Read More
Given a string S of size N, the task is to sort the string without changing the position of vowels. Examples: Input: S = “geeksforgeeks”Output:… Read More
Given a string keyboardLayout of size 26 representing the sequence of characters present in a single row of a keyboard and a string word, the… Read More