
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
Md Waqar Tabish has Published 17 Articles

Md Waqar Tabish
2K+ Views
We can build regular expressions that recognize repeated character groups using a few special characters. The following metacharacters can be used to search for a character or set of repeated characters. The question mark was the first repeating operator or quantifier developed. It effectively makes it optional by instructing the ... Read More

Md Waqar Tabish
356 Views
Calculating the trace of a matrix using Numpy is a common operation in linear algebra that can be used to extract important information about the matrix. The trace of a matrix is defined as the sum of the elements on the matrix's main diagonal, which runs from the top left ... Read More

Md Waqar Tabish
4K+ Views
In this article, we will learn how to calculate the determinant of a matrix using the numpy library in Python. The determinant of a matrix is a scalar value that can represent the matrix in a compact form. It is a useful quantity in linear algebra, and it has several ... Read More

Md Waqar Tabish
632 Views
Introduction As a fresher, it can be challenging to break into the tech industry and secure a job as a Python developer. However, it is possible with the right combination of skills, experience, and determination. Here are a few steps you can take to increase your chances of getting a ... Read More

Md Waqar Tabish
8K+ Views
Python is a popular and widely used programming language known for its simplicity, flexibility, and productivity. It is used in various applications, including web development, data science, and automation. However, like any language, Python has its limitations. Python's main limitations include its performance and speed, memory management, support for concurrency ... Read More

Md Waqar Tabish
5K+ Views
By indexing, we can access items in Python sequence data types. Strings, lists, tuples, and range objects are sequence data types. In this tutorial, we'll go over-indexing in further detail. What Are List Indexes? Any linear data structure in any programming language is built around indexing. The default index for ... Read More

Md Waqar Tabish
277 Views
Without question, Python is among the first things employers look for in a data scientist's skill set. It has quickly established itself as the standard language in the data science industry. It has repeatedly come first in worldwide data science polls, and its ubiquity is only growing! But what distinguishes ... Read More

Md Waqar Tabish
443 Views
As you've heard, python is one of the most well-known programming languages. Two-thirds of the developers who now use the language enjoy it and intend to keep using it, according to a study conducted by Stack Overflow last year. Why, though, is it so well-liked? What does it serve? Python ... Read More

Md Waqar Tabish
658 Views
The visual presentation of data is known as data visualization. Because of the excellent ecosystem of Python packages focused on data, it is crucial for data analysis. Summarising and presenting a large quantity of data in a straightforward and understandable style also helps to grasp the data, no matter how ... Read More

Md Waqar Tabish
1K+ Views
In this article we are going to learn about difference between violinplot() and boxplot() using Python. What is a violin plot? A violin plot is a type of statistical chart similar to a box plot but with a rotated kernel density plot on each side. The name "violin plot" comes ... Read More