
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
Mrudgandha Kulkarni has Published 151 Articles

Mrudgandha Kulkarni
234 Views
In Python, lists are versatile data structures that allow us to store and manipulate collections of items. There may be situations where we need to interchange or swap the positions of elements within a list. In this blog post, we will explore how to write a Python program to swap ... Read More

Mrudgandha Kulkarni
228 Views
Dictionaries in Python are versatile data structures that allow us to store and manipulate key-value pairs. While dictionaries maintain an unordered collection, there may be situations where we need to swap the positions of items within a dictionary. In this blog post, we will explore how to write a Python ... Read More

Mrudgandha Kulkarni
1K+ Views
List comprehension is a powerful feature in Python that allows for concise and expressive code when working with lists. It provides a compact way to perform operations on elements of a list and create new lists based on certain conditions. In this blog post, we will explore how to use ... Read More

Mrudgandha Kulkarni
550 Views
Splitting a string into smaller parts is a common task in many text processing and data analysis scenarios. In this blog post, we will explore how to write a Python program to split a given string into k-sized overlapping strings. This program can be helpful when working with sequences of ... Read More

Mrudgandha Kulkarni
371 Views
In this article, we will explore how to split a string in Python using a given list of strings. We will dive into the step-by-step process of creating a Python program that can handle this task effectively. Whether you're dealing with text processing, data parsing, or any other scenario that ... Read More

Mrudgandha Kulkarni
400 Views
In today's digital landscape, ensuring the security of web applications and protecting sensitive data is of utmost importance. One effective way to enhance the security of your web directories is by implementing password protection. By password protecting specific directories, you can restrict access to authorized users only, adding an extra ... Read More

Mrudgandha Kulkarni
11K+ Views
In the world of containerization, Docker has become a popular choice for packaging and deploying applications. One of the key aspects of Docker containers is the entrypoint, which defines the default command that is executed when the container starts. However, there are scenarios where you may need to override the ... Read More

Mrudgandha Kulkarni
687 Views
RAR is a popular file compression format known for its efficient compression algorithm and ability to compress large files into smaller archives. While Linux natively supports common archive formats like ZIP and TAR, working with RAR files requires additional tools. In this blog post, we will explore how to open, ... Read More

Mrudgandha Kulkarni
3K+ Views
In today's interconnected world, network security is of utmost importance. One essential aspect of securing your network is managing the access to specific ports on your system. Firewalld, a dynamic firewall management tool, provides a flexible and user-friendly approach to firewall configuration in CentOS. This guide will focus on a ... Read More

Mrudgandha Kulkarni
33K+ Views
Naming or renaming Docker containers is an essential aspect of container management. When working with multiple containers, the default random names assigned by Docker can be challenging to track and manage. However, by assigning meaningful names to your containers, you can easily identify and interact with them, improving your overall ... Read More