Code Packets
Browse all published coding projects
Digital Dictionary in C
The full-blown dictionary functions provide Adding /searching/suggested words data elements inside the dictionary at a faster speed. The project implementation is made in the C language.
Log In System using C++
It is a Log In System using C++. It includes Registration and Login for non-existing and existing users respectively.
Text to Handwriting Converter in Python
Convert a text document (.txt file) into both JPEG and PDF files with the text content handwritten using Python.
Volatile keyword in Java.
In this tutorial, We will study the Volatile keyword in Java. We will learn what is the volatile keyword. Why and how we use it. Also, how it is connected to the thread.
FUNCTIONS IN C++
In this packet, we will see more about the concepts of function in C++ programming. A function is a piece of code, a part of a program that runs when it is called.
Centurial leap years using C++
This C++ code is to find out whether a given year is a leap year or not. A leap year can be centurial and non-centurial. The main goal is to clearly detect the leap year.
Power of Two using Bit Manipulation in C++
This is a C++ code to find whether a given number is a power of two or not. It is of a faster time complexity as compared to the one using the modulo operator and logarithmic operator.
Real-Time Currency Converter in Python
This Python Code acts as a Real-Time Currency Converter using Tkinter, enabling the user to keep track of changes in the market values.
Sudoku Solver using Backtracking in C++
This packet uses the approach of backtracking in C++ for solving the sudoku for an NxN matrix i.e, 4x4, 9X9, 25x25. Due to implementation in C++, the execution is relatively faster.
Wine Quality Prediction using Machine Learning & Python
This project contains the Jupyter Notebook and the Python language code. In this, we are predicting the quality of wine using different supervised machine learning algorithms.
Number Guessing Game using C++
This is a simple Number-guessing game in which the user has to guess a number generated by computer in stipulated number of chances. This is implemented in C++.
Voice Recording and Transcribing using Python
Automated voice recording and transcription using sounddevice and SpeechRecognition modules in Python.