
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
Rohan Singh has Published 170 Articles

Rohan Singh
8K+ Views
Environment variables in Python are configuration values stored outside the code and are used at runtime by the application. These variables are present in the form of key-value pairs just like dictionaries in Python. These variables can be set, updated, or removed from the configuration file without changing the application ... Read More

Rohan Singh
795 Views
Tkinter is a Python library that is used to make desktop applications for Windows and UNIX-based Operating systems. Tkinter gives many choices to make a widget for the application. The same widget can be made in different ways using Tkinter. Today there are vast sources of information available on the ... Read More

Rohan Singh
1K+ Views
Pygame is an open-source Python library used for making games. Pygame library provides various functions and tools for creating games, sound processing, and graphics.pygame library can be used to create games on any operating system like Windows, Linux, and macOS as pygame is a cross-platform library. What is an 8-bit ... Read More

Rohan Singh
1K+ Views
Object-oriented programming language is a programming paradigm that is widely used in software design as it makes the code reusable and reduces code redundancy. It uses classes and objects to implement real-world objects in programming. Python and other languages like C++, java, javascript, etc support object-oriented programming. In this article, ... Read More

Rohan Singh
26K+ Views
Access modifiers are used by object oriented programming languages like C++, java, python etc. to restrict the access of the class member variable and methods from outside the class. Encapsulation is an OOPs principle which protects the internal data of the class using Access modifiers like Public, Private and Protected. ... Read More

Rohan Singh
5K+ Views
Accessor and mutator methods in Python are used to access the private data of a class which cannot be accessed from outside the class. In object oriented programming the class object data is encapsulated i.e the object data is kept private and cannot be accessed from outside the object. ... Read More

Rohan Singh
582 Views
Numpy is a python library used for scientific and mathematical computations. Numpy provides functionality to work with one dimensional arrays and multidimensional arrays. Multidimensional arrays consist of multiple rows and columns. Numpy provides multiple built in functions to interact with multidimensional arrays. In this article we will explore how to ... Read More

Rohan Singh
11K+ Views
To access the index of the last element in the pandas dataframe we can use the index attribute or the tail() method. Pandas is a Python library used for data manipulation and analysis. Data frame is a data structure provided by pandas which is used to work with ... Read More

Rohan Singh
594 Views
String is a data type in python which is widely used for data manipulation and analysis in machine learning and data analytics. Python is used in almost every technological development like web development, app development, desktop app development, game development, machine learning, artificial intelligence and data analysis etc. Python provides ... Read More

Rohan Singh
454 Views
Python programming language was developed in 1991 and is a open source programming language. In the recent years python has gained immense popularity and has a huge developer support ecosystem which makes it easy to use and a versatile programming language. With its easy to understand syntax it is ... Read More