Code Packets
Browse all published coding projects
OTP and Password Generator using Java
This project is used to generate a random Password and OTP using Java. It helps in generating unique passwords and OTP which helps in making the password and OTP stronger.
To implement insertion sort in JAVA
In this blog, we will discuss the idea of implementing insertion sort in JAVA with the help of algorithm and code.
Student Record in C++
This program collects student details like name, roll number, marks in each subject, and calculates their grade. This is a simple console app programmed in C++.
128-bit AES encryptor and decryptor in C++
This C++ packet performs 128-bit AES encryption and decryption on plain data and encrypted data respectively.
Basic Calculator using C++
The below-given program is a basic calculator using C++, to perform addition, subtraction, multiplication, and division.
Constructor In Java
In Java Programing language The main purpose of constructors is to set the initial state of an object when the object is created by using the new operator.
Phone keypad problem in C++
In this problem, we will discuss the combinations of alphabets that occurred by pressing the numbers on the phone keypad, and this problem is solved in C++.
Line coding encoder and scrambler with digital data generator in C++
This C++ code implements line coding schemes such as NRZ-L, NRZ-I, Manchester, Differential Manchester, and AMI (with scrambling) on the randomly generated binary data stream.
TODO LIST USING JAVASCRIPT
This project is made using JavaScript, HTML, and CSS for frontend. It is a to save all the tasks user wants to do in the routine or for future planning.
Hangman game in Python
The purpose of this project is to build a fully functioning Hangman game using Python and understand the code fully as we do bit by bit walkthrough of the code.
OTP GENERATOR USING JAVASCRIPT
This project is made using JavaScript with CSS as frontend and HTML for structure. It is a 6 digit ONE TIME PASSWORD GENERATOR.
Find the 'n' th Prime Number Using C++
This is just a simple program to find the 'n' th prime number in the prime number series using C++, where the n value should be given by the user.