
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
Mukul Latiyan has Published 473 Articles

Mukul Latiyan
5K+ Views
Pandas is a powerful Python library widely used for data manipulation and analysis. When working with DataFrames, it is often necessary to check whether a specific value exists within the dataset. In this tutorial, we will explore how to use the 'in' and 'not in' operators in Pandas to determine ... Read More

Mukul Latiyan
2K+ Views
PostgreSQL is a popular open−source relational database management system known for its robustness, scalability, and advanced features. Python provides excellent support for interacting with PostgreSQL databases, allowing developers to seamlessly connect and execute SQL queries. In this article, we will explore the step−by−step process of connecting to a PostgreSQL database ... Read More

Mukul Latiyan
2K+ Views
Pandas is a Python library that is used for data analysis and manipulation. It provides a number of functions for cleaning and formatting data. In this article, we will learn how to clean string data in a given Pandas DataFrame. We will cover the following topics: Removing leading and ... Read More

Mukul Latiyan
474 Views
Clustering is a fundamental unsupervised learning technique that aims to discover patterns or groupings in unlabeled data. It plays a crucial role in various domains such as data mining, pattern recognition, and customer segmentation. However, once clustering algorithms are applied, it becomes essential to evaluate their performance and assess the ... Read More

Mukul Latiyan
263 Views
Support Vector Machines (SVMs) are supervised learning algorithms that can be used for both classification and regression tasks. SVMs are powerful algorithms that can be used to solve a variety of problems. They are particularly well−suited for problems where the data is linearly separable. However, SVMs can also be used ... Read More

Mukul Latiyan
970 Views
A population pyramid is a graphical representation of the age and gender distribution of a population. It consists of two back−to−back bar charts, one showing the distribution of males and the other showing the distribution of females across different age groups. The population pyramid is a powerful visualisation tool that ... Read More

Mukul Latiyan
4K+ Views
When working with data in Python, there may be situations where you need to organise your data into a list of N−lists. This data structure, commonly known as a "list of lists, " allows you to store and access multiple sets of data in a structured and flexible manner. Each ... Read More

Mukul Latiyan
493 Views
Image classification is a type of machine learning task that involves identifying the objects or scenes in an image. It is a challenging task, but it has many applications in real−world problems such as facial recognition, object detection, and medical image analysis. In this article, we will discuss how to ... Read More

Mukul Latiyan
2K+ Views
Excel uses a special format to store dates and times, called serial date numbers. Serial date numbers are a count of days since January 1, 1899, which is the date that Excel considers to be the beginning of time. Python's datetime module provides powerful tools for working with dates and ... Read More

Mukul Latiyan
235 Views
Arrays are fundamental data structures in programming, enabling us to store and manipulate collections of values efficiently. Python, as a versatile programming language, provides numerous tools and libraries for working with arrays and matrices. In particular, the ability to convert 1−D arrays into 2−D arrays is an essential skill when ... Read More