Coders Packet

Listing of packets of source code submitted by coders

Student management system in Python

Student management system in Python helps to maintain student details using insertion, deletion, search, modify, and print operations.

Password generator in Python

Password generator in Python is implemented using loops and random module. Here, a random password is created in a given length of password.

Generate random array in C++

In this C++ project, we will see the random array generation means random values are generated and inserted into the array.

Tic Tac Toe in C++

This game can be played by 2 players. The player who attains the pattern(line) first is the winner. If the pattern is not achieved then it results in draw.

Create a random music from a folder in Python

This project aims to play random music from a folder. Here we use the random module, which is an inbuilt module in Python.

COVID VACCINE SLOT RESERVATION SYSTEM IN C++

The covid vaccine slot reservation system helps the user to book the slots for their preferred vaccine.

A C++ program to calculate the change or amount to be returned to the customer.

The project aims to deliver the total amount to be returned to the customer after billing by splitting the amount into the currency units.

Ticket booking fare estimation system for bus using C++

This project aims to calculate the total fare for booking seats in a bus by one or more person(s).

Random mobile number generator for India using C++

This C++ project can generate the desired number of random mobile numbers that work in India only.

QR Code Generator in Python using qrcode and pillow packages

This is the source code for the QR Code generator in python using qrcode and pillow packages. It takes user input (text/link) and saves the QR code for that input in png format.

Linear regression in C++

In this C++ project, the regression analysis is done to find equations that will fit the data. Linear regression is one type of regression analysis. The equation for a line is y = a + bX.

Console Hangman game in Python

Hangman game in Python is implemented using loops. Here, it randomly assign a word to the player, and the player has to guess the word by recommending the letters with a fixed number of attempts.