Code Packets
Browse all published coding projects
Remove all elements by value from a vector
In this program, we will see how we can remove all the elements of a particular value in a specified range from the vector.
Youtube Video Downloader using Python
A Video Downloader created using Python. pytube package is used in this packet. In this one has to insert the link of the youtube video and that video will get downloaded.
Random Outputs of Multiple Dice(s) Rolls using Python 3.9 and Tkinter
A Dice Simulator created in Python using its famous packages Tkinter and random. It inputs the number of dices to be rolled by and outputs the results of all the dices being rolled randomly.
Fizz Buzz in C++
It is a fun game in which users can input a number and Fizz Buzz is printed in a unique way.
Amazon Stock Price Analysis in Python
Here we see the Amazon stock price last five year and we also calculate the last five year mean value and variance
C++ Program to Multiply two Matrices using 2D-Vector
Hello coders, I have implemented a c++ program to calculate the product of two matrices using vectors.
C++ program to Print all Prime Numbers in an Interval
Hello buddies, here is a c++ program for printing all prime numbers between two numbers.
OTP generator application with GUI using Python and Tkinter
In this article, we are going to create a Graphical User Interface based OTP generator application in Python. We will see how to create a GUI app using Tkinter and how to add functionality to it.
Playing with Numbers (Java Code)
A Java Code that helps to rotate an array of size n to left, by the number of times provided by the user.
Language Translation Using Python
It is a Python code that is used to convert the user input string into the language selected by the user
Student Exam Marks Prediction Using Linear Regression
Analyzing and prediction of academic performance of the students using an existing database.
Insertion in a Linked List using C++
In this we will see how to insert data in linked list in C++, from last node to the first node.