Code Packets
Browse all published coding projects
Online Quiz/MCQ test using Jakarta/Java Server Pages (JSP) and Servlet.
The project provides a platform for taking quiz /MCQ test online. In this online test , the user will have to take the quiz and submit. After submission the result would be shown to the user.
Finding maximum depth of binary tree in Python
This is a simple python code to find the depth (maximum) of a given binary tree. The algorithm used is a simple recursive approach and the problem is solved in O(n) time, with a single pass.
AUDIO CALCULATOR using pygame in Python
This calculator is programmed using pygame in Python for audio and Tkinter for the interface of the calculator.
URL Link scanner from given html file written in C++ language
It is not easy to work on URLs using C++ so this project can help in developing a library in C++ for extracting URL links present in the given HTML files or codes.
Python Script to Convert image files to PDF
A python script to convert image files to pdf using the Image module of the PIL library
Linear Regression from Scratch using Python
The purpose of this project was to present the inner workings of Linear regression for better understanding using Python.
Multiple Object Tracking using OpenCV in Python
Track multiple objects simultaneously from a video stream using OpenCV library of Python Programming
Ternary Search(find an element or key in array) in C++
Hello Friends, Right now we are going to learn how to write a source code on Ternary Search in C++. Ternary Search Time Complexity is better than Binary Search.
Medicine desktop reminder in Python
In this project, we are using plyer and time modules to create a reminder for having medicine in Python.
Pneumonia Detection using Python using Keras
Here we have created a CNN model using Keras to detect Pneumonia using Chest X-ray with 90% accuracy.
Implementation of Ackermann Function using C++
Implementation of the Ackermann recursive Function, one of the simplest and earliest-discovered examples of a total computable function that is not primitive recursive using a C++ program.
How to add first digit and last digit of three digit number using Java
Basically we will be learning how to add first digit and last digit of three digit number using java.