All Basic Articles
Contributing to open source is a really great way to get real-world software development and other domain experience from the comfort of your home even… Read More
In this article, we will be discussing starts_with() and ends_with() with examples in C++20. starts_with() This function efficiently checks if a string begins with the… Read More
Given two integers L and R, the task is to calculate the count of numbers from the range [L, R] having exactly 5 distinct positive… Read More
The task is to generate a popup using jQuery. Popups are useful to splash important information to the visitors of a website. Approach: A simple… Read More
To implement a hash table, we should use the hash table class, which will map keys to the values. The key or values of the… Read More
Modulo or Remainder Operator returns the remainder of the two numbers after division. If you are provided with two numbers, say A and B, A… Read More
HashSet extends AbstractSet and implements the Set interface. It creates a collection that uses a hash table for storage. The class does not guarantee the… Read More
The string can be repeated N number of times, and we can generate a new string that has repetitions. repeat() method is used to return… Read More
The List interface allows storing the ordered collection. It is a child interface of Collection. It is an ordered collection of objects in which duplicate… Read More
Environment Variable:  The two fundamental concepts of any programming language are variables and constants. As we know that constants and variables both represent the unique… Read More
The insert() method in MongoDB inserts documents in the MongoDB collection. This method is also used to create a new collection by inserting documents. Important… Read More
In this article, we will see how to convert a PDF to Excel or CSV File Using Python. It can be done with various methods,… Read More
Enterprise Resource Planning(ERP) is the practice of consolidating an Enterprise’s planning, manufacturing, sales, and marketing efforts into one management system. It combines all databases across… Read More
SharedPreferences in Android is local storage that is used to store strings, integers, and variables in phone storage so that we can manage the state… Read More
The cin object in C++ is used to accept the input from the standard input device i.e., keyboard. it is the instance of the class… Read More
The cout object in C++ is an object of class iostream. It is defined in iostream header file. It is used to display the output… Read More
In this article, we will discuss the very basic and most common I/O operations required for C++ programming. C++ runs on lots of platforms like… Read More
Given a matrix arr[][] of size N * M, the task is to print the boundary elements of the given matrix in a clockwise form.… Read More
STL Priority Queue is the implementation of Heap Data Structure. By default, it’s a max heap, and can be easily for primitive data types. There… Read More
Do you want to learn more about data science? Do you want to read blogs that contain the latest trends and techniques in data science?… Read More