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.
(See all)
Add 'table maker' option to online WYSIWYG Editor
By christopher_bra gg on Sep 10
Max Bid: $35

(Screen Shot)

Clone of the Web Administration Panel of the Web Q ...
By Sarder Hasnut [Microsoft Certified Solution Developer] on Sep 10
Max Bid: Open to fair suggestions


Site Templates
By jaguarfan on Sep 10
Max Bid: $75


Simple data harvest.
By blong on Sep 10
Max Bid: Open to fair suggestions


Collection Database
By TheBestCoder on Sep 10
Max Bid: Open to fair suggestions


Access Database modifications
By gstamant on Sep 10
Max Bid: $50


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

Open Work Categories.
Database 
(174 open)
   Access 
(61 open)
   MySQL 
(100 open)
   Oracle 
(12 open)
   SQL Server 
(73 open)
   Other DB 
(22 open)
Documentation / Tech Writing 
(26 open)
   Language (Human) Translations 
(11 open)
Data Entry 
(35 open)
Game Development 
(16 open)
Graphics / Art / Music 
(52 open)
   Graphics 
(62 open)
     Adobe AfterEffects 
(8 open)
     Adobe Photoshop 
(26 open)
     Adobe Premiere 
(7 open)
     3d Animation 
(22 open)
   Art (Misc.) 
(11 open)
   Music 
(9 open)
   Photography 
(8 open)
   3d Modeling 
(15 open)
Language Specific 
(129 open)
   Assembly / Machine language 
(10 open)
   ASP 
(67 open)
   ASP .NET 
(71 open)
   C# 
(72 open)
   C++ / C 
(136 open)
   Carbon (Mac OS) 
(5 open)
   Cocoa / Obj-C 
(4 open)
   Cold Fusion 
(16 open)
   Delphi 
(49 open)
   Java 
(84 open)
   JSP 
(15 open)
   Perl 
(42 open)
   Python 
(6 open)
   PHP 
(110 open)
   XML/XSL 
(35 open)
   Visual Basic 
(170 open)
   Visual Basic .Net 
(110 open)
   Other 
(74 open)
Misc 
(35 open)
   Middleware 
(1 open)
   CAD 
(6 open)
MultiMedia 
(34 open)
   Video Editing 
(13 open)
Network 
(34 open)
   Network Design 
(6 open)
   Network Implementation 
(5 open)
Platforms 
(73 open)
   Windows 
(195 open)
     MS Exchange 
(8 open)
     MS Office 
(18 open)
     Other 
(11 open)
   Darwin 
(3 open)
   Embedded Systems 
(3 open)
   Hand Held/PDA Programming 
(12 open)
   Internet Browser 
(57 open)
   Linux 
(53 open)
   Lotus Notes / Domino 
(2 open)
   UNIX 
(25 open)
Requirements 
(15 open)
Security 
(28 open)
Testing / Quality Assurance 
(20 open)
Web 
(190 open)
   Page Design 
(88 open)
   Flash 
(54 open)
   Marketing 
(3 open)
     Search Engine Optimization 
(1 open)
     Marketing (Other) 
(1 open)
   Web Services 
(88 open)
   Web (Other) 
(98 open)
Training 
(11 open)
   Computer Based 
(10 open)
Other
 
Other Sites

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

Abstract Classes In Java - Homework Help
Bid Request Id: 21105
Bookmark in my 'To Do' list
Posted by: GenXcoder (8 ratings)
(Software buyer rating 9.25)
Non-action Ratio: Very Good - 8.33%
Buyer Security Verifications: Good
Approved on: Jul 8, 2002
10:47:20 PM EDT
Bidding Closes: Jul 9, 2002
11:30:50 PM EDT
Viewed (by coders): 218 times
Deadline: 7/9/2002 11:30:00 PM
TIME EXPIRED
Phase:
100% of work completed and accepted. Coder has been paid.
Max Accepted Bid: Bidding is closed
Project Type: Personal Project / Homework Help
Bidding Type: Open Auction
Categories: Windows, Language Specific, Java, Platforms
Enter chat room for this bid request
(0 active users at Sep 10, 2003 9:54:12 PM EDT)

Description:
NEED HELP!!! I need someone to help me with some Java homework regarding abstract classes. There are two parts. Need it done within 10 hours of acceptance!!!

Deliverables:
Part I:

Program will have 5 files:

Driver.java
Shape.java
MyPoint.java
MyCircle.java
MyRectangle.java

Define an abstract base class Shape that includes a protected class variable numShapes, a static method to get the numbers of shapes, and two abstract methods findArea() and printArea() to output the area of the shape. Derive subclass MyPoint from MyShape.

MyPoint has two constructors: the first one is default which initializes instance variables x,y to zero, the second one accepts two arguments. Also, increment numShapes in the two constructors. Derive subclasses from MyPoint for MyCircle, and MyRectangle. MyCirlce has two constructors: the first constructor is default which initializes radius to 1. Make sure to call a base class constructor to initialize the points (i.e. super(10,10)).

The second constructor accepts two arguments: a point and a radius. Also, implement two methods findArea() and printArea(). These two methods are overriding in base class MyShape. MyRectangle class is implementing similar to MyCircle class except in the default constructor call a base class constructor to initialize the points to 50,50 (i.e. super(50,50)). Implement toString() method for each class. Test the classes by selecting two objects of the derived classes, then invoking the printArea() method for each. Use the toString() methods in the derived classes.

NOTE: SEE ATTACHED ZIP FILE FOR COMPLETE DETAILS AND INSTRUCTIONS!!!
--------------------------------------------------
Part II:

Program will have 6 files:

Driver.java
Employee.java
Boss.java
CommissionWorker.java
PieceWorker.java
HourlyWorker.java

Define an abstract base class Employee and use polymorphism to perform payroll calculations based on the type of an employee. The derived classes of Employee are Boss who gets paid a fixed weekly salary regardlass of the number of hours worked, CommissionWorker who gets a flat base salary plus a percentage of sales, PieceWorker who gets paid by the number of items produced, and HourlyWorker who gets paid by the hours and receives overtime pay.

An earnings method certainly applies generically to all employees. But the way each person's earnings are calculated depends on the class of the employee, and these classes are all derived from the base class Employee. So earnings is declared abstract in base class Employee and appropriate implementations of earnings are provided for each of the derived classes. Then, to calculate any employee's earnings, the program simply uses a base-class pointer (or reference) to that employee's object and invokes the earnings method.

NOTE: SEE ATTACHED ZIP FILE FOR COMPLETE DETAILS AND INSTRUCTIONS!!!
--------------------------------------------------
Complete and fully-functional working program(s) in executable form, COMPLETE DOCUMENTATION OF ALL CLASSES/METHODS WITHIN PROGRAM, and complete source code of all work done.

Complete copyrights to all work purchased.


Platform:
Windows 9x, NT (4.0, 5.0, 5.1)

Must be 100% finished and received by buyer on:
Jul 9, 2002 11:30:00 PM 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:
I need this work completed WITHIN 10 HOURS OF ACCEPTANCE so I can go over it!!!

DEADLINE is 7/9/2002 1:00PM NO LATER!

Additional Files:
This bid request includes IMPORTANT additional attached files. Please download and read fully before bidding.



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!
SOURAV
(17 ratings)
in NEW DELHI, DELHI
India
Bid id: 231,331
 
$20 (USD) Jul 9, 2002
12:13:39 AM EDT
 7.88
(Very Good)
   
Hello,
I am an expert JAVA coder and know exactly what you need. Due to a previous job I did for a student, I have most of the code commented and ready.Forget 10 hrs., take the fully commneted work (just right for assignments)within 4 hrs. of bid acceptance.Just drop me a message that I'm on the job and by the time you'll make the payments etc., your job will be done.

Thanks,
Sourav.
 
 
 
 
  There are 2 private replies to/from SOURAV. Click here to view them.
 




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.97 on 120 jobs 
Buddies
Rated a 9.84 on 91 jobs 
Codman
Rated a 9.97 on 158 jobs 
Andrei Remenchuk
Rated a 10 on 14 jobs 
D-N-S
Rated a 9.93 on 38 jobs 
hernest
Rated a 10 on 121 jobs 
markesh
Rated a 10 on 22 jobs 
Maxnet Technologi es Private Limited
Rated a 9.93 on 84 jobs 
florentin
Rated a 10 on 56 jobs 
PSergei
Rated a 9.76 on 102 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.