Author: Puja Kumari
Python | How to iterate through two lists in parallel?
Iterating on one list is simple and can be done by writing a for loop, but how can we iterate through two lists in parallel?…
Python | How to sort a dictionary by value?
Sorting a dictionary by value is a common task in Python and we will see different ways of how can accomplish this task. Also, sorting…
Python | How to split a list into equally-sized chunks?
While working with lists in python, you may have encountered a problem with splitting the list into equally-sized chunks. So, this article will help you…
Python | How to get dictionary keys as a list
In this article, you will learn 6 different methods to get dictionary keys as a list in python. These methods include various Python programming concepts…
How to represent Enum in Python?
Do you know what Enum means in the programming field and how to represent Enum in Python? Let’s clear all of Enum today. Enum short…
Brick Breaker Game in C++
In this article, we will build the famous Brick Breaker Game in C++. The goal of this game is to smash all the bricks on…
Dino Game in Java
In this article, we will create the famous Chrome Dino Game in Java with Swing. We all have played the Dino game in the browser…
How to utilize ChatGPT to improve your coding skills?
Whether you have just started learning to code or have some experience in programming, you will need help with simple or complex problems related to…
Sudoku Game in C++
Sudoku is an interesting and popular puzzle game with some simple rules. In this article, we will explore how to build a simple Sudoku Game…
Filter List in Python | 10 methods
Filter List in Python is the process of selecting specific items from a list that meet certain criteria. This is a task that you will…
Top 25 Pattern Programs in C++
In this article, I will show you the Top 25 Pattern Programs in C++ that you must learn which will help you to understand the…
Currency Converter in C++
In this article, we will build a simple program for Currency Converter in C++. The user will be able to convert currencies like Dollar, Euro,…
Number Guessing Game in C++
In this article, we will build a simple Number Guessing Game in C++. It’s a game in which the player has to guess a secret…
C++ Project Structure
Hello everyone, have you ever wondered while looking inside a big C++ project structure what are these different folders, subfolders, and files used for? Especially…
ATM machine program in C++
In this article, we will build an ATM machine program in C++ that will have all the basic functionalities of an ATM. This project is…
To Do List in C++
In this article, we are going to create To Do List in C++ with the help of file handling. By using file handling we can persist…
Tic Tac Toe Game in C++
In this article, we are going to create Tic Tac Toe Game in C++. This will be a simple console-based application in which the player can…
Snake Game in C++
Hello everyone, in this article we are going to create Snake Game in C++. This will be a simple console-based application in which the player…
Hospital Management System Project in C++
In this article, we will build Hospital Management System Project in C++ and MySQL with source code. This project deals with all the essential operations of managing…
Student Management System Project in C++
In this article, we will build Student Management System Project in C++ and MySQL. Student Management System can help a college or university to maintain…