Skip to main content

My Projects During College



Projects 2014-2017
  • Tour and Travel Website- Implementation of Html5, CSS3 in Tour and travel website as group project at Integer Innovation
  • Quiz Mania Using Java- Quiz Mania is a dsktop application for quiz taking and learning programming through books and videos. Java Core concepts are used for developing this application during inhouse training at ASET, New Delhi
  • Resume Builder-  RESUME Builder is simple web project through which you can manage your resume, you can add your details, skills, projects, scores, educational qualifications, achievements etc in different sections. You can view them in a tabular form. It's user interface is simple to understand. You can also add your notes and save them. This project is made using PHP, Mysqli database, Wamp server, HTML5 and CSS3. More functionalities will be added to it like making a resume in different formats in DOC and PDF so that anyone can download it. https://github.com/Ankita002/ResumeBuilder
  • Digital Learning Environment- It is a web project which presents an environment where you can read book, watch videos and download tutorial on programming and computer science and use it as computer learning software. HTML5 and CSS3 are used to develop it. All resources are available offline. You only need a PDF reader and video viewer in your browser to run this application.It works best on Google chrome.
  • Corporate Data Storage- Data storage is a simple web application developed using HTML5, CSS3, PHP, Mysqli database on Wamp server. You can add and store your business contacts in mysqli table by filling a form and directly view them in a table in one go.
  • BMI Calculator Website- This web project is created using Javascript, HTML5 and CSS3. It has a BMI calculator and Body fat percentage calculator developed using Javascript. Information about BMI, BMI chart, Diseases related to BMI and links to various websites for BMI, weight loss diets are also added in the websites's homepage. https://github.com/Ankita002/BMI-Calculator
  • Employee Database Project- Employee database project is implemented in C programming language using structures and binary files.Employee information like name,salary, age,department,date of joining, employee level in a scale of 1 to 7 are stored. operations like add record,list records, modify, delete etc are implemented using file operations,pointers and structures. Data is stored in .DAT file.
  • PhoneBook App- It is a simple phone book application developed using C language. It stores contact details like name, id, address, contact number. C concepts like structures, pointers, file handling operations are used and data is stored in .DAT file. IDE used to develop it is Codeblocks. It is submitted as a project in my online course on c programming language at twenty19.com.
  • Password Store App- It is basically a password storage type application developed using c language. Users can register and then login using their account. Password, Website name, Email Id can be stored for different accounts. It has a menu based interface to perform user operations like addition,modification, deletion and others. Users need to remember just one password, using which he can access many others of different accounts. Also many users can use same app. Data of each user will created and stored in different .DAT files which will be created when user registers first time. Structures, file handling, pointers etc are used. https://github.com/Ankita002/Password-Store-in-C
  • Book Store Management System- It is Book store management application built using Python programming language It stores book name, author, ISBN number etc and performs operations like add, modify, delete, search using file operations, classes, loops, pickle method, output formatting which were successfully implemented during my online course on Python programming from Twenty19.com.
  • OCD Website- OCD website is a simple website developed using Html and css. It informs about Obsessive compulsive disorder by displaying nature of ocd, symptoms, treatment options. Feedback of users are stored in a table using Php and Mysqli in wamp server. A newsletter is also implemented in which users submits his email id which is stored at wamp server using php. In diagnosis section, a self diagnosis test is developed using html, css and javascript to help users to understand their level of ocd and chances of them being diagnosed with OCD. Menu, user interface design and image gallery, newsletter and others components are implemented. It was submitted as a project in my online course on User Experience (web) at twenty19.com. https://github.com/Ankita002/OCDWebsite
  • Online Railway Reservation Website- It is a simple railway reservation website developed using Html, CSS and PHP in wamp server. User can book ticket, check fare charges, see destinations and cancel ticket. User can inquire ticket availability. Two modes of transaction by debit and credit card are implemented. Booking detailed are stored in a table in Mysql and can be viewed by user. Tables for transactions are also implemented. https://github.com/Ankita002/OnlineRailway
  • Student Store Application in C++
  • Solar Energy Website -Simple Single Page Website using Html, CSS
  • Intrusion Detection System using Cloud 
  • Implementing Resource Allocation algorithm in Cloud Computing
  • Twitter Data Mining using R- Twitter Data Mining using R.
  • Marketing Research Project- Marketing research project on countries assigned to me, Marketing assignment and Marketing strategy for a new brand at Travizars Pvt Ltd during my internship in marketing and advertising.

Comments

Popular posts from this blog

ML Foundations Course by Great Learning- Notes

In this blog, I am going to post my notes, assignments etc that I did during my course on ML Foundations by Great Learning. ML Maths Basics Topics Covered Line Concept Line, Planes and Hyper planes Vector Algebra-magnitude and dimension Vector Algebra-vector operations Dot Product Matrix Algebra Functions Maxima and Minima of Functions Chain Rule Maxima and Minima Applications in ML Gradient Descent using Partial Derivatives Intro to AI and ML AI-computer program that does something smart or makes smart decisions When computer program learns about the world from data we call it ML. We assume past is a good representation of future. Model building from data take data as input find patterns in data summarise the pattern in a mathematically precise way Machine Learning automates this model building. If data is without noise then finding a pattern is easy but unfortunately data contains both data and noise.  Noise is unstructured and random. It does not repeat itself. ML does not assume da

Password Store App in C

A simple password storage type application developed using C language. Users can register and then login using their account. Password, Website name, Email Id can be stored for different accounts. It has a menu based interface to perform user operations like addition, modification, deletion and others. Users need to remember just one password, using which he can access many others of different accounts. Also many users can use same app. Data of each user will created and stored in different .DAT files which will be created when user registers first time. Structures, file handling, pointers etc are used. Code Link