• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
projectsgeek

ProjectsGeek

Download Mini projects with Source Code, Java projects with Source Codes

  • Home
  • Java Projects
  • C++ Projects
  • VB Projects
  • PHP projects
  • .Net Projects
  • NodeJs Projects
  • Android Projects
    • Project Ideas
      • Final Year Project Ideas
      • JSP Projects
  • Assignment Codes
    • Fundamentals of Programming Language
    • Software Design Laboratory
    • Data Structure and Files Lab
    • Computer Graphics Lab
    • Object Oriented Programming Lab
    • Assembly Codes
  • School Projects
  • Forum

ProjectsGeek

Hotel Management System project in C++

September 11, 2014 by ProjectsGeek 6 Comments

Hotel Management System project in C++

Project Objective

This new hotel management has been developed to meet all the processing requirements which are needed within the hotel industry. This system will allow the hotel reception department to manage all the records of their customers and their payment in easy manner. The person who will use this system will able to get all details on how to use the instruction in offline mode, so no need to take special training before using the system. All proper keywords has been used to define each function of this new system. To use this system, its users should have a valid password.

Once the correct password will be entered, verification process will be taken place at the backend side and if entered password will be correct, admin will redirected to the next section, where they will able to handle all the business activity using the computer system.

Hotel Management System Snapshots

report bill
customer table
Hotel Management System menu
Hotel Management System
Hotel Management System login
customer details

 

The use the system for exact operations, admin will have to enter the correct option provided under the main menu screen. To perform all the operations related to any particular customers, admin will have to use the option number 2 which is available under customer detail. If new customers arrive to their hotel and their data need to be maintained, admin can append its details to the customer’s record file.

Existing System

Existing system do not much flexibility and reliability which has been provided by this new hotel management system. In the previous system all records were saved in file under text which can be easily readable by the other person if certain mistakes has been done. Even if the file is in read mode, its contents can be copied and changes can be made to that particular file. Getting information on particular customer for each services which they have taken within their hotel was not possible and much manual processing task was done manually to final bill of a particular customer before they check out from the hotel.

Proposed System

This new system will do all the processing tasks automatically. Admin will only have the responsibility to set the price of all services which are being provided within their hotel premises. Admin of the hotel will be provided with option to add, delete and modify the services which are being provided by their hotel. During billing process, admin have to just enter their basic details for various services which they have taken. To make billing process easier, billing section has been divided into two parts, under first charges of room services will be prepared which will help customers to get final room services bill during their check out and food bill which can be paid by the customers on daily basis or on weekly or monthly basis.

Download Project

 Hotel Management System Abstract  Download Abstract
 Hotel Management System Source Code  Download Source Code

Other Projects to Try:

  1. Canteen Management System project C++
  2. DVD Cafe Management System using C++
  3. Hotel Management project for Final year
  4. Online Hotel Management System Project
  5. Hotel Management Project Rational Rose UML Diagrams

Filed Under: C++ Projects Tagged With: C++ Projects

NFS Proxy Server System project

September 8, 2014 by ProjectsGeek Leave a Comment

NFS Proxy Server System project 

 

NFS Proxy Server System

Problem Definition

Our aim is to create a NFS Proxy Server System, which will keep the records of all the mount points of the NFS servers and any replicas, if exist.

NFS Proxy Server System

  • Will process a clients request to mount a share, by providing the IP address of the server having that share, so that the client can now directly connects to the server of that IP address.
  • in case a client can’t able to mount that particular share ,it will report to the proxy server that server is down and proxy server process the request by changing the status of previous server and by providing another IP address with the same share if exist, otherwise proper error messages will be sent.
  • In case a connection breaks down during the transmission of a file, then the transmission will resume from the point where it stopped

Technology Used:

C Programming Language

Platform:

UNIX

Software And Hardware Requirements

Hardware Requirements

  • A high processing capable machine- PENTIUM 2.0 GHZ or more (which is most commonly used).
  • Suitable network interfaces and 100Mbps LAN.
  • 32 MB RAM
  • A suitable underlying OS- LINUX (Kernel 2.6 or better).
  • NFS client/server software.

Software Requirements

  • A suitable underlying OS- LINUX (Kernel 2.6 or better).
  • NFS client/server software.

Project Description

This project is aimed to enable an NFS Proxy Server to keep record of all the mount points on the machines which are running NFS Server service on them. NFS which stands for Network File System is very useful remote file access file mechanism which is defined by Sun Micro systems.

The necessity to keep the machines on a network gives rise to the consideration that the clients who send request to transfer files from the NFS Server should be well served in real time with all the functionalities that make it easier for the client to communicate with the server.

The project will be using an Object Oriented Methodology. Every part of it would be divided into modules; each module will be developed separately.

The scope of this project lies in enabling the proxy server to control and monitor the requests which are remotely placed from a client computer. In the future it may couple with other software’s and can be used to remotely configure the services.

Download Project

Abstract Download

Other Projects to Try:

  1. Client Server Protocol Project in .Net
  2. Voice Chat Server Final Year Project
  3. Final year telecommunication engineering project-Intercom Over LAN
  4. Proxy Server for FTP project in Java
  5. Mail Server Final Year Project Idea

Filed Under: Final Year Projects Tagged With: Project Ideas

Binary Monitor System project in Java

September 7, 2014 by ProjectsGeek Leave a Comment

Binary Monitor System project in Java

 

 

Problem Definition

Binary Monitor SystemOur Binary Monitor System project aims at providing a GUI based software to determine registry, file system and network activities done by a binary on windows platform.

This allows the user to statically and dynamically monitor executable s which helps to determine whether the binary performs some malicious activity or not. It can also act as an effective tool for system administration

Project Description

Our goal is to develop GUI based software which allows the user to statically and dynamically monitor executable s, that is to see what registry, file system and network activities are done by a particular binary in WINDOWS XP system. This helps to determine whether it performs some malicious activity or not.

We aim to establish a report which will show comprehensive and detailed activities of a binary (what system calls were made by it, parameters values that were passed to the functions, what files were accessed etc) with respect to the registry, file system and network. It informs the user about any malicious or harmful activity being performed for example deleting a file or modifying a registry key entry in an unauthorized manner.

This Binary Monitor System can aid an anti virus software in detecting a malicious code. It can also help to detect “Encrypted viruses” since it analyses the behavior of the malicious code and not just virus signatures. This software can be used in Cyber-forensics

This product can be used by System Administrator, security analysts, application developers, system designers and tool developers or the end-user.

Working

The Binary Monitor System includes Analysis that is, processing of the binary code to extract syntactic and symbolic information. It tries to find Symbol tables (if present). We begin by decoding instructions by creating a dis assembly equivalent of the binary. We then proceed by finding the control-flow information that is, basic blocks, loops, functions etc and data-flow information.

The project is divided into two parts:

  1. STATIC – includes determination of the functions present in the dis assembly code of the binary before execution and finding parameters passed to them by scanning the string table(if present).
  2. DYNAMIC – includes analysis of the code coverage during the execution of the binary by finding the actual function calls being made depending on the conditions satisfied in various types of conditional statements.

Software And Hardware Requirements

Software Requirements

  • Windows XP.
  • Visual C++.
  • Monitoring tools:
  1. REGMON.
  2. FILEMON.
  3. TCPView. 

Hardware Requirements

  • Minimum 20 GB hard disk.
  • Minimum 256 MB RAM.
  • INTEL Pentium 4 processor.
  • SVGA color monitor.

Download Abstract


Abstract Download

Other Projects to Try:

  1. Network Monitoring System-final year projects for cse
  2. Detection of Virus Patterns in Emails Project
  3. Health Monitor Android Project
  4. Assembly Language Codes
  5. How to convert Binary to Gray conversion

Filed Under: Final Year Projects Tagged With: Project Ideas

Virtual Earth Inside final year project

September 6, 2014 by ProjectsGeek Leave a Comment

Virtual Earth Inside final year project

Virtual Earth Inside

Problem Definition

            Virtual Earth inside is a web application built upon the Virtual Earth Platform, that allows one to zoom right into a building and navigate through its interior plans and photos, giving one a sort of virtual tour of the “inside”.

Project Description

  • Virtual Earth Inside has brought us from viewing graphical maps to actual satellite images, where one can zoom in and even see their building tops. We now want to take you inside the buildings.
  • Virtual Earth Inside provides a way to view & publish the interiors of a property on the web, leveraging the VE platform.
  • Thus, people and business owners can share the interiors of their houses / restaurants / hotels / schools etc with the rest of the world over the internet.
  • It provides a new immersive user experience where people can explore the interiors of places of interest.
  • It brings a new aspect to Photo Viewing – tying it with GeoLocation & Point of View on a map.
  • It brings to Mapping the concept of exploring interiors/overlays along with zoomable Photos.
  • Key to the success would be an extremely easy to use UI, enabling an average non tech person to publish his interior plan annotated with Photos within 10 mins or so.

Working

Virtual Earth Inside would consist of a Central Portal where a visitor can search for all the registered & published properties. The visitor can choose any property & explore it from “inside”.

Visitors can register with us if they want to publish their Property on the site. Registered users (contributors) can locate their property on VE and register it with us.

  • They can then use MapCruncher to “crunch” their interior plans.
  • They can then Add “ViewPoints” and upload the corresponding photos.
  • They can also Edit/Delete the ViewPoints.
  • The property can be marked as public or private.

Technology Used

  •  Virtual Earth APIs
  • ASP.NET 2.0
  • AJAX
  • Enterprise JavaScript Programming

Platform

  • Windows
  • Visual Studio 2005

Software and Hardware Requirements

  • OS WindowsXP
  • Microsoft .NET 2.0 Runtime
  • MapCruncher
  • PC

Implementation

  • The UI layer is implemented on top of the Virtual Earth API in the form of a Javascript control.
  • The WebApp is implemented in ASP.NET 2.0 with c# and SQL Server 2005 in the back end.
  • AJAX is used to retrieve the photos and tiles from the storage server.
  • Amazon S3 Server is used as the storage server.

Download Abstract 

Download Abstract

Other Projects to Try:

  1. Final Year Project-Tracking System project
  2. Educational Grid Final year project Ideas
  3. Final year engineering projects Ideas for CSE
  4. Secure Virtual Drive-Final year projects for cse
  5. Final Year Project on Web Issue manager

Filed Under: Final Year Projects Tagged With: Project Ideas

Online Recruitment System project in Java

September 5, 2014 by ProjectsGeek 6 Comments

Online Recruitment System project in Java

Online Recruitment System project

Project Abstract

Recruiters and job seekers both uses online Online Recruitment System medium to have direct interaction with best selected ones. By uploading resumes and setting job search criteria by the job seekers, they can browse the web application. Recruiters will have the freedom to post the particular jobs with their requirements, can filter their search query, check out the resumes of job seekers, upload their logos, can create their profiles and much. Online Recruitment System is one such platform with some unique features to make recruitment process easier by providing flexibility to the recruiters. It will provide recruiters to conduct online test for different sections as per their requirement and even conduct the coding test also.

Existing System

Attending walk-ins by the job seekers is always not possible by visiting from one place to another. Even at the recruitment center lots more paper work involved such as form filling, attaching necessary certificates and documents etc. A lot of investment has to be made from both the side. Recruiters have to give their advertisement in paper media such as newspaper, pamphlets etc which is again extra cost and even not reachable to wider region. Job seekers were not able to know about latest recruitment and not able to get their job even if they satisfy the eligibility condition.

Proposed System

Online Recruitment System will responsible to automate all the working process to reduce cost and save time. Recruiters will able to post their job and its type by which it will displayed to the job seekers dashboard based on their job type and profile settings. Recruiters will able to search for employees based on qualification, colleges, get their contact info, view their resumes, profiles and even much more. Selected job seekers will have to go through recruitment process set by the recruiters such as basic question round section, written examination using online exam mode, have private chat between recruiters and job seekers. Job seekers can able to search job on the basis of various category such as organization wise, using their skills, location wise, job type etc.

Modules

  1. Recruiters Module.
  2. Job Seeker Module.
  3. Exam Module.
  4. Reports Module.

Recruiters Module:-

Recruiters can use this system by creating their profiles using recruiter section. They can post new post, select candidates, conduct exams for them and get auto generated reports. It can also prepare selection list, send private messages to job seekers email and filter their search criteria for selecting candidates.

Job Seeker Module:-

Candidates searching for job will have to register through job seekers section. They can enter their profile details, edit it and create job alerts to get directly to their emails. They can apply for job, view job descriptions, verify their contact information and search for jobs based on their skills, experience, location and company wise also. They can also recover their forgotten password through their emails.

Exam Module:-

Exam module will allow recruiters to set the type of examination taken for selected candidates, setting time duration, number of section, questions per section, reports generation. Results can be displayed after completing the exam or can be kept confidential for internal purpose.

Reports Module:-

This module will be used by the recruiters to make their work more flexible. It will help to reach out to right candidates based on their search query. It will help to get candidates examination results, last activity details, prepare graphical reports for selected candidates on the basis of their skills etc.

Download Project

Online Recruitment System Abstract Abstract Download
Online Recruitment  Source Code Source Code Download
Online Recruitment System Database Database Download

Other Projects to Try:

  1. Recruitment Management System project in PHP
  2. Graduate Selection Process project in Java
  3. Online Exam System in Java
  4. Online Examination System project Java
  5. MCA Projects in Java

Filed Under: Java Projects Tagged With: Java Projects

Online Shopping System project using Java

September 2, 2014 by ProjectsGeek 1 Comment

Online Shopping System project in Java

 

Online Shopping System project

Project Abstract

Customers are getting involved in online shopping is only because of internet and awareness among them. It relieves you from visiting shops build with bricks and mortar within your limited time and free you to do some marketing even in bad weather condition. Online Shopping System is one such platform that offers you to have some online shopping within your budgets. To make this web site more flexible, maintainable and attractive, admin will be provided with powerful tools to carry out their operations while customers will be provided with infinite options apart from privacy and security. With just few clicks on simple buttons, you can purchase at your comfort and freedom to know prices, reviews with availability of 24×7 for this online shop.

Existing System

It can be sometime embarrassing situation for you all, when you want to buy something which is quite different and mostly seen by others in shop. It can be adult toys, sexy lingerie, undergarments and much more. The name of privacy was not there and a situation comes during occasional seasons where you have to wait in lines for a long time. Search products by your own and within your available required options was not possible to meet one’s requirement under a particular shop. Mostly you need to have cash to purchase items and your extra time to have shopping by investing the amount of your fuel and energy.

Proposed System

Online Shopping System not only get popularity just by providing better products and services to their customers but also the back end processing which were involved to achieve profitability. This Online Shopping System will not only provide its customers to get products list with prices but also flexibility to make comparison of prices and quantity offered by other vendors. Customers were provided with privacy and security while purchasing and browsing products and method to have a secure payment mechanism. Its different search options will have their customers to refine their requirements and get their desired products within requested price, if available.

Modules

  1. Admin Module.
  2. Customers Module.
  3. Chat Module.
  4. Payment Module.

Admin Module:-

Admin will not only able to manage services which are being provided to their customers but also able to add menus with products, initiate offers message to their customers inbox, set layout and themes. Apart from these, it will also able to get their customers details, payment status, total-amount and manage account of working employees.

Customers Module:-

To have privacy and security, each customers should have an account to access, search and purchase products offered by this merchant website. Apart from they can also check their delivery status and product review along with comparison options.  Through various available search options, customers can get their products of their choice.

Chat Module:-

Chat module has been integrated under the customer’s panel. They can have live chat with representative of merchant website to troubleshoot their problems and get immediate response from them.

Payment Module:-

Third party applications for making secure payment has been incorporated for the customers to make online payment for their purchased products. Once online system begins, it will transform to https in place of http and with the help of trusted and verified certificates of payment module, customers can be assured of their privacy and security. 

Download Project

Online Shopping System Abstract Download Abstract
Online Shopping System Source Code Download Source Code
Online Shopping Database Download Database

Other Projects to Try:

  1. Online Shopping Java Project
  2. Online Shopping System project Java
  3. Online Shopping Cart project in Java
  4. Online Shopping System project in Java
  5. Online Shopping Web Application in Java

Filed Under: Java Projects Tagged With: Java Projects

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 65
  • Page 66
  • Page 67
  • Page 68
  • Page 69
  • Interim pages omitted …
  • Page 135
  • Go to Next Page »

Primary Sidebar

Tags

.Net Projects Download Android Project Ideas Android Projects Angular 2 Assembly Codes C # Projects C & C++ Projects C++ Projects Class Diagrams Computer Graphics Database Project Data Mining Projects DataScience Projects Datastructure Assignments Download Visual Basic Projects Electronics project Hadoop Projects Installation Guides Internet of Things Project IOS Projects Java Java Interview Questions Java Projects JavaScript JavaScript Projects java tutorial JSON JSP Projects Mechanical Projects Mongodb Networking Projects Node JS Projects OS Problems php Projects Placement Papers Project Ideas Python Projects seminar and presentation Struts

Search this Website


Footer

Download Java Project
Download Visual Basic Projects
Download .Net Projects
Download VB Projects
Download C++ Projects
Download NodeJs Projects
Download School Projects
Download School Projects
Ask Questions - Forum
Latest Projects Ideas
Assembly Codes
Datastructure Assignments
Computer Graphics Lab
Operating system Lab
australia-and-India-flag
  • Home
  • About me
  • Contact Form
  • Submit Your Work
  • Site Map
  • Privacy Policy