
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
Niharika Aitam has Published 172 Articles

Niharika Aitam
214 Views
Python object is belongs to the object oriented programming language. We previously have idea and knowledge regarding the python object. provides several built-in functions that help you inspect various aspects of objects. Some of these methods, including help(), type(), dir(), id(), hasattr(), getattr(), and callable(). Using the help() function If ... Read More

Niharika Aitam
300 Views
We have to work with large size files in Python. If we use the large files, they occupy more space, and it isn't easy to handle the large files too. In such cases, we have a module in Python to work with the large files. The module we can use ... Read More

Niharika Aitam
3K+ Views
What is Hexadecimal String? A hexadecimal string is a textual representation of data in the hexadecimal number system. In this system the numbers are represented using a base-16 notation which means in the combination of digits 0 to 9 and the letters A to F. Each hexadecimal digit corresponds to ... Read More

Niharika Aitam
107 Views
The aspect ratio of a plot refers to the ratio of the width to the height of the plotting area. It is a crucial parameter in data visualization as it determines the shape and proportions of the plot which directly affects how the data is visually represented. For example in ... Read More

Niharika Aitam
192 Views
Consecutive Character Maximum Difference refers to finding the maximum absolute difference between the ASCII values of consecutive characters in a string. It is used to measure the maximum "gap" or "jump" in the character sequence based on their ASCII values. In Python, each character in a string is represented internally ... Read More

Niharika Aitam
181 Views
Concatenation is the process of combining two or more strings, sequences, or data structures together to create a single larger entity. In the context of strings, concatenation involves joining multiple strings end-to-end to form a new, longer string. In many programming languages such as Python, the concatenation operation is typically ... Read More

Niharika Aitam
417 Views
Converting a character matrix to a single string in Python means taking a 2D representation of characters such as a list of lists or a NumPy array and combining all the characters into a single string. The order of the characters in the resulting string is determined by the arrangement ... Read More

Niharika Aitam
818 Views
Concatenation is the process of combining two or more strings, lists, or other sequences into a single entity. It involves joining the elements of the sequences in a specific order to create a new sequence or string. In Python, concatenation can be performed on various types of sequences, including strings, ... Read More

Niharika Aitam
159 Views
Concatenation is the process of combining two or more strings, lists, or other sequences into a single entity. It involves joining the elements of the sequences in a specific order to create a new sequence or string. In the context of strings, concatenation means appending one string to the end ... Read More

Niharika Aitam
793 Views
Python is an interpreted programming language. However, when we want to check whether Python is compiled or interpreted can be a bit confused. Let's dive into a detailed explanation to understand the inner workings of Python's execution model and how it combines aspects of compilation and interpretation. Interpreted languages are ... Read More