How Software Gets Done  


Login

Software Buyers
Request bids
Search coders
My Buyer Account
Buyer help
Buyer articles
Buyer FAQ
Latest news
 
Software Coders
Newest open work
Browse all work
Search all work
My Coder Account
Coder help
Coder articles
Coder FAQ
Latest news
 
Affiliates
My Affiliate Account
Affiliate help
Affiliate FAQ
Latest news
 
Newest Bid Requests.
Simple Address book
By Oblik on Jul 21
Max Bid: Open to fair suggestions


Firewall software
By A. Walter on Jul 21
Max Bid: Open to fair suggestions


HoroClock - Time attendance software
By Vincent Gariépy on Jul 18
Max Bid: Open to fair suggestions


TCP Killer
By naegelin on Jul 18
Max Bid: $300


IP Traffic Generator
By mulumba on Jul 20
Max Bid: Open to fair suggestions


Simple Questions
By Cougar on Jul 21
Max Bid: $5


Click here to put this ticker on your own site and/or get live RSS newsfeeds

Open Work Categories.
Database 
(149 open)
   Access 
(54 open)
   MySQL 
(86 open)
   Oracle 
(13 open)
   SQL Server 
(61 open)
   Other DB 
(18 open)
Documentation / Tech Writing 
(24 open)
   Language (Human) Translations 
(3 open)
Data Entry 
(32 open)
Game Development 
(23 open)
Graphics / Art / Music 
(51 open)
   Graphics 
(56 open)
     Adobe AfterEffects 
(7 open)
     Adobe Photoshop 
(27 open)
     Adobe Premiere 
(5 open)
     3d Animation 
(17 open)
   Art (Misc.) 
(18 open)
   Music 
(13 open)
   Photography 
(2 open)
   3d Modeling 
(15 open)
Language Specific 
(107 open)
   ASP 
(55 open)
   ASP .NET 
(37 open)
   C# 
(48 open)
   C++ / C 
(127 open)
   Carbon (Mac OS) 
(2 open)
   Cocoa / Obj-C 
(2 open)
   Cold Fusion 
(10 open)
   Delphi 
(51 open)
   Java 
(66 open)
   JSP 
(15 open)
   Perl 
(45 open)
   PHP 
(93 open)
   XML/XSL 
(32 open)
   Visual Basic 
(147 open)
   Visual Basic .Net 
(73 open)
   Other 
(62 open)
Misc 
(35 open)
   CAD 
(6 open)
MultiMedia 
(38 open)
   Video Editing 
(6 open)
Network 
(42 open)
   Network Design 
(6 open)
   Network Implementation 
(8 open)
Platforms 
(68 open)
   Windows 
(168 open)
     MS Exchange 
(4 open)
     MS Office 
(11 open)
     Other 
(7 open)
   Darwin 
(1 open)
   Internet Browser 
(44 open)
   Linux 
(70 open)
   UNIX 
(32 open)
   Hand Held/PDA Programming 
(9 open)
Requirements 
(15 open)
Security 
(44 open)
Testing / Quality Assurance 
(24 open)
Web 
(156 open)
   Page Design 
(74 open)
   Flash 
(44 open)
   Web Services 
(69 open)
   Web (Other) 
(74 open)
Training 
(14 open)
   Computer Based 
(9 open)
Other
 
Other Sites

Download the free Rent A Coder IE toolbar!
 
Show Bid Request

Class
Bid Request Id: 8937
Bookmark in my 'To Do' list
Posted by: kaitlyn72 (17 ratings)
(Software buyer rating 9.94)
Non-action Ratio: Very Good - 4.55%
Buyer Security Verifications: Good
Approved on: Feb 17, 2002
2:30:28 AM EDT
Bidding Closes: Feb 19, 2002
2:47:00 AM EDT
Viewed (by coders): 633 times
Deadline: 2/2/2002
TIME EXPIRED
Phase:
100% of work was accepted by buyer. Coder account has been credited.
Max Accepted Bid: Bidding is closed
Project Type: Personal Project / Homework Help
Bidding Type: Open Auction
Categories: C++ / C
Enter chat room for this bid request
(0 active users at Jul 21, 2003 11:38:15 PM EDT)

Description:
The program is to maintain a database of policyholders for Automobile Insurance Company. PROCESSING: Create a CLASS OF OBJECTS that will hold the following 8 pieces of information on each policyholder. All member variables of the class are to be private members by the member functions of the class. (1) Identification # of policyholder. (2) First and last names of policyholder. (3) Amount for which the automobile is insured. (4) Amount of the annual premium paid to policyholder. (5) Amount of the deductible on the policy. (6) License number of the insured vechile. (7) The state in which the vechile is insured. (8) You must also CREATE AN ARRAY OF CLASSES to policyholder information for the company. The program MUST ALSO ensure that following actions are prohibited: (1) Changing of a non-existent policy in the database. (2) Printing of a non-existent policy in the database. (3) Deletion of a non-existent policy from the database. (4) Addition of a duplicate policy to the database. If one of these actions is attempted, the program is to print out an appropriate error message indicating which of the prohibited actions was attempted and a suggested corrective action. INPUT DATA: The input file comes from A: drive and under the file name data3. Each line of data will indicate one of several actions o be performed by your program. The exact format for a line of data will depend on the processing to be done. For each action, the codes are: A - Add a policyholder to the database D - Delete a policyholder P - Print information U - Update the information Q - Terminate the program Each line of input will contain different information depending on the action to be taken, they are: (1) FOR ADDING A POLICY HOLDER: Format: <Name><Amount><Deductible><Lic#><State> Example: A 2025 John Beckman 25000 1250.50 200 VBR-425 KS (2) FOR DELETING A POLICYHOLDER: Format: Example: D 4577 (3). FOR PRINTING OUT POLICY INFORMATION: Format: E OR S Example: P E OR P S 8813 **The second single letter (E or S) will indicate what is to be printed. An E means that the entire database (information on all policyholders) is to be printed. An S indicates that only the information about the policyholder with the indicated Policy # is to be printed.

Deliverables:
(4) FOR CHANGING POLICY INFORMATION Format: <Field ID><New Information> Example: U 5553 1 Karla U 6281 5 250 U 1109 6 ASAP-21 The value of the filed ID will indicate piece of information needs to be changed. The codes and meaning: 1. The first name. 2. The Last name. 3. Amount for which the automobile is insured. 4. The amount of the annual premium paid. 5. The amount of deductible. 6. The license number. 7. The state. THE DATA TYPE IN THE FILES AS FOLLOWS: The identification number - A four(4) digit number The first name - A string (12 char max) The last name - A string (12 char max) Amount for which the automobile is insured - An integer (< 100000) The amount of the annual premium paid FOR THAT PARTICULAR POLICY - A float (< 10000) The amount of deductible - An integer < 1000 The license number - A string (7 char ALWAYS) The state - A string (2 char ALWAYS) OUTPUT: The output will be in the form of a list of information contained in a policyholder record OR a statement indicating the results of a transaction. Results should state what was done or print an ERROR message. ***WILL EMAIL THE WINNING BIDDER AN INPUT ,OUTPUT EXAMPLE & SAMPLE POGRAM*** Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. Complete copyrights to all work purchased. ******************************************************** DEADLINE: 02/25/02 * MUST USE C++ COMMANDS, NO C ALLOWED, * MUST BE A SIMPLE PROGRAM (must be as simple as possible, will provide a sample example) * MUST USE COMMENTS * NO MORE THAN 2 FILES (cpp and/or h) * MINIMUM USE OF POINTERS IF ANY.

Platform:
VISUAL C++

Must be 100% finished and received by buyer on:
Feb 2, 2002 EDT
Deadline legal notes: All times are expressed in the time zone of the site EDT (UT - 5). If the buyer omitted a time, then the deadline is 11:59:59 PM EDT on the indicated date.

Special Conditions / Other:
* DEADLINE: 02/25/02
* MUST USE C++ COMMANDS, NO C ALLOWED,
* MUST BE A SIMPLE PROGRAM (must be as simple as possible, will provide a sample example)
* MUST USE COMMENTS
* NO MORE THAN 2 FILES (cpp and/or h)
* MINIMUM USE OF POINTERS IF ANY.




Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements. We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation. If you notice a violation please help out the site and report it. Thanks for your help.
 
Bidding/Comments:
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests.

See all rejected bids (and all comments)
Name   Bid Amount 
 
Date   Coder Rating  
This bid was accepted by the buyer!
TheThinker
(2 ratings)
in Melbourne, Victoria
Australia
Bid id: 105,841
 
$15 (USD) Feb 18, 2002
4:39:31 AM EDT
 10
(Excellent)
   
HI KAITLYN,
It's Ashley again!

I can do this program for you, you know my abilities, I hope the price is acceptable.

I hope you win this bid also
Ashley

 




Quick Bid Request Search
 Advanced Search
Newest Open Work
Latest News  
Credentials


 

 
Rent A Coder upholds the rigorous business practices required to be both a BBB member and Square Trade vendor.
  • All customer issues addressed within 2 days
  • Openly disclosed pricing and return policies
  • Participation in mediation at buyer request
  • Superior selling track record
This site is verified through its parent company, Exhedra Solutions, Inc.
 
Top Coders.

Securenext
Rated a 9.96 on 112 jobs 
Anuj Gakhar
Rated a 9.97 on 102 jobs 
Buddies
Rated a 9.83 on 81 jobs 
Andrei Remenchuk
Rated a 10 on 13 jobs 
Codman
Rated a 9.97 on 149 jobs 
Michael Sharp
Rated a 9.97 on 181 jobs 
D-N-S
Rated a 9.93 on 37 jobs 
markesh
Rated a 10 on 22 jobs 
teleCODERS
Rated a 9.93 on 67 jobs 
Maxnet Technologi es Private Limited
Rated a 9.92 on 74 jobs 

See all top coders...

(What makes a top coder?)

Top Exam Scorers

 
Other
Rent A Coder is PayPal verified through its parent company, Exhedra Solutions, Inc.

Created in partnership with:

 

Affiliate Sites
Latest News | About Us | Kudos | Feedback/Contact    Affiliates | Advertise    Privacy | Legal

Copyright © 2001, Exhedra Solutions, Inc. All rights reserved.
By using this site you agree to its Terms and Conditions.
"Rent A Coder" (tm), "Safe Project Escrow" (tm) and "How Software Gets Done" (tm)
are trademarks of Exhedra Solutions, Inc.