
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
Priya Sharma has Published 45 Articles

Priya Sharma
3K+ Views
Python dictionaries are built-in data structures used to store data in key-value pairs. A dictionary of lists refers to a dictionary that contains one or more lists as values for any keys. For example, # Dictionary of Lists in Python: dict = { "list1" : [1, 2, 3], "list2" : ... Read More

Priya Sharma
736 Views
Statistics provides us with powerful tools to analyze and understand data. One of the fundamental concepts in statistics is the 68-95-99.7 rule, also known as the empirical rule or the three-sigma rule. This rule allows us to make important inferences about the distribution of data based on its standard deviation. ... Read More

Priya Sharma
281 Views
When you are working with scientific, mathematical, and programming applications, the ability to navigate and explore points in multi-dimensional space is an important requirement. Whether we are analyzing data, processing images, or conducting simulations, a solid understanding of adjacent coordinates in N-dimensional space becomes indispensable. In this comprehensive blog post, ... Read More

Priya Sharma
248 Views
In today's digital age, creating user-friendly desktop applications with graphical user interfaces (GUI) has become increasingly important. Python, a versatile and popular programming language, offers a multitude of frameworks and libraries to develop powerful applications. PyQt, a Python binding for the Qt framework, is one such library that empowers developers ... Read More

Priya Sharma
241 Views
Python dictionaries are powerful data structures that allow you to store and retrieve key-value pairs efficiently. They provide a flexible way to organize and manipulate data, making them a fundamental tool in Python programming. While dictionaries have undergone improvements in recent versions of Python, such as maintaining the order of ... Read More

Priya Sharma
448 Views
Graphical User Interfaces (GUIs) are an integral part of modern software applications, providing an interactive and user-friendly experience. In this tutorial, we will explore how to create a Weight Conversion GUI using Tkinter, a popular Python library for creating GUI applications. Our Weight Conversion GUI will allow users to easily ... Read More

Priya Sharma
7K+ Views
In Python, dictionaries are versatile data structures that allow you to store and retrieve key-value pairs efficiently. Nested dictionaries, in particular, provide a convenient way to organize and represent complex data. However, updating values within a nested dictionary can sometimes be a bit challenging. Accessing Nested Dictionary Elements To ... Read More

Priya Sharma
257 Views
In the world of programming, it's often necessary to perform calculations based on the positions of elements within a sequence. One common task is to calculate the distance between two elements, taking into account their actual order indices. This concept, known as "Actual Order Index Distance, " is particularly useful ... Read More

Priya Sharma
708 Views
Python Kivy is an open-source Python library that allows developers to create multi-touch applications with a natural user interface (NUI). It supports various multimedia elements, including audio files, which can be integrated into Kivy applications to enhance the user experience. It provides a framework for building cross-platform applications that run ... Read More

Priya Sharma
470 Views
Strings are a fundamental data type in Python, and manipulating them is a common task in many programming scenarios. One specific requirement you may encounter is the need to insert a phrase or substring in the middle of an existing string. Python provides several methods and techniques to accomplish this ... Read More