
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Tarun Singh has Published 104 Articles

Tarun Singh
5K+ Views
PIL (Python Imaging Library) is a widely used Python library that enables developers to work with image files. It offers a broad range of functionalities for manipulating and handling image files, such as opening and resizing them, converting between different formats, and more. One frequently encountered task when working with ... Read More

Tarun Singh
299 Views
Market research, price monitoring, and content aggregation are just a few examples of the myriad of purposes for which web scraping is utilized and has gained widespread popularity. Although web scraping entails extracting data from websites, there are quite a few legal and ethical concerns surrounding this controversial practice, particularly ... Read More

Tarun Singh
856 Views
In this article, we will learn how to modify an existing figure instance in Matplotlib. We will see the complete step-wise process to modify the existing figure in matplotlib along with their complete examples in Python. Matplotlib is a popular Python library used for creating various types of plots and ... Read More

Tarun Singh
3K+ Views
Merging two Pandas DataFrames on index can be useful in many data analysis scenarios. For instance, you might have two datasets with different features or data points, but both share a common index. In this case, merging the two DataFrames can help you combine the data in a meaningful way. ... Read More

Tarun Singh
2K+ Views
HTML (Hypertext Markup Language) is the foundation of the internet. Websites use HTML to create and display content in a structured manner. In many cases, it's necessary to modify HTML code to add new elements, remove unwanted elements, or make other changes. This is where BeautifulSoup comes in. BeautifulSoup is ... Read More

Tarun Singh
5K+ Views
CSV (Comma Separated Values) files are widely used for storing and exchanging data in a simple format. In many data processing tasks, it is necessary to merge two or more CSV files based on a specific column. Fortunately, this can be easily achieved using the Pandas library in Python. In ... Read More

Tarun Singh
2K+ Views
Time series data is a crucial part of many business operations, especially those in the finance and manufacturing industries. These datasets often come in multiple tables or files, with each table containing a specific subset of the data. Merging these tables can be a challenging task, mainly when the tables ... Read More

Tarun Singh
548 Views
The pillow or PIL is a powerful Python library for handling and manipulating images. One of the most common tasks in image processing is merging multiple images into a single image. It provides a range of functions for loading, manipulating, and saving images in various formats. One of the main ... Read More

Tarun Singh
419 Views
In JavaScript, the window object represents the current web browser window, while the document object represents the web page that is currently loaded in the window. The window object in JavaScript provides access to the browser's history, location, and other properties and methods that allow us to interact with the ... Read More

Tarun Singh
16K+ Views
In modern web applications, it is common to store images in databases for various reasons, such as security, easy management, and scalability. PHP, being a popular server-side scripting language, provides an easy way to upload images to databases and display them on the web pages. In this article, we will ... Read More