- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Pawandeep has Published 50 Articles

pawandeep
324 Views
We can develop games in Python using PyGame. PyGame is a Python module that is used to develop games. This module includes computer graphics and sound libraries used in video game development.Install PyGameTo develop game in Python, we need PyGame. Therefore, we need to install PyGame.We should Python and pip ... Read More

pawandeep
264 Views
Heap Sort is the sorting technique based on binary heap data structure. In order to proceed with heap sort, you need to be familiar with binary tree and binary heap.What is a Complete binary tree?A complete binary tree is a tree data structure where all the levels except the last ... Read More

pawandeep
617 Views
Python has many active implementations. We will be addressing its different implementations and know which is the fastest implementation.Different implementations of Python −IronPython − This is the Python implementation which runs on .NET framework. This implementation is written in C#. It uses .net virtual machine for running. IronPython can use the ... Read More

pawandeep
135 Views
What is unit testing?Unit testing is a type of software testing where each individual component of the system is tested. Unit testing is important practice for the developers. It ensures that every component of the software is functioning appropriately as expected. Unit testing is mainly performed by the developers during ... Read More

pawandeep
140 Views
Whenever we build a software and run it, there may arise some errors or exceptions which hinder the normal execution of the software. Logging helps us to keep the track of the events which takes place when a software is running. Logging is normally useful in software development process especially ... Read More

pawandeep
4K+ Views
Insertion sort is the simple method of sorting an array. In this technique, the array is virtually split into the sorted and unsorted part. An element from unsorted part is picked and is placed at correct position in the sorted part.The array elements are traversed from 1 to n.If the ... Read More

pawandeep
2K+ Views
Most of the applications need to be integrated or connected with a database for performing certain relevant operations. The majority of projects require database connectivity to store certain data about the users. MySQL Database can be integrated with the Python applications.To connect MySQL database, we need to have it installed ... Read More

pawandeep
17K+ Views
Python provides a python shell which is used to execute a single Python command and display the result. It is also called REPL. REPL stands for Read, Evaluate, Print and Loop. The command is read, then evaluated, afterwards the result is printed and looped back to read the next command.Sometimes ... Read More

pawandeep
4K+ Views
Python virtual environmentA Python virtual environment is a virtual environment such that the libraries, packages and scripts installed into it are isolated from other virtual environments or the default Python environment i.e. the ones which are installed on your operating system. Virtual environments are really useful and needed by the ... Read More

pawandeep
683 Views
Linear Search is a searching technique to search some particular value from an array. This is the simplest searching technique.In this searching technique, the value to be searched is compared with all the elements in the array.If the value is found, the index of the element is returned.If the particular ... Read More