vote up 0 vote down star

Possible Duplicate:
How to estimate a programming task if you have no experience in it.

It seems that one of the biggest changes from an educational environment to a workplace environment is the fact that you are expected to come up with your own deadlines and stick to them in the workplace, rather than have a deadline assigned to you with a project. You can't make the deadline to long or you look inefficienct. You can't make the deadline too short or you will look like you are working at an unacceptable pace or again look inefficient. This is not that big of a problem when doing tasks that you are familiar with and have a good understanding of how long they will take, but what about tasks that you are doing for the first time or long-term projects that will undoubtedly have unseen pitfalls? I realize that no one has the concrete answer to this, but I was hoping everyone could share their own ideas.

flag

closed as exact duplicate by Chris Lively, Rex M, Dour High Arch, Chris Farmer, coobird Sep 12 at 6:59

7 Answers

vote up 3 vote down check

See this answer:

http://stackoverflow.com/questions/425044/how-to-estimate-a-programming-task-if-you-have-no-experience-in-it

link|flag
Thanks, I didn't see that before. – Mark Callison Sep 14 at 13:44
vote up -1 vote down

Use this handy tool. It's remarkably accurate.

http://www.cznp.com/6to8weeks/index.php

link|flag
1  
yeah, that's not helpful. – Paul Nathan Sep 11 at 22:36
vote up 0 vote down

Extreme Programming suggests using a "spike solution", a throwable prototype in other words: http://www.extremeprogramming.org/rules/spike.html

link|flag
vote up 0 vote down

Your first task for the project is to get familiar with the problem, investigate potential solutions (perhaps coding a few experiments), and start planning your solution.

Give yourself a reasonable amount of time to do that (a day, a week, depends on project size), and when you're done, you'll have a much better idea of the amount of work involved, how long it will take and what resources it will need.

Saying "I need more time to find out how long this will take" is better than choosing a time period without any real basis.

link|flag
vote up 0 vote down

Do enough design in terms of assigning core responsibilities to packages so that you are happy estimating the amount of work for each package; then add them up and add contingency and integration costs.

If it's something that you really don't know, say so and ask for a fixed period ( say one or two weeks for a serious project, a day or so for a small one ) for investigation work to come up with an estimate you have more confidence in.

link|flag
vote up 0 vote down

When estimating new projects where there are a variety of unknowns, I often will provide a range for an estimate (2 to 4 weeks, 4 weeks to 3 months, etc), with the understanding that the estimate will sharpen as research and clarity around the spec increase. I find that it helps to break out the knowns from the unknowns and attempt to place estimates on them separately.

link|flag
vote up 1 vote down

Here is a quick rule of thumb to start you out:

Break the task down into chunks where each chunk is less than a day. A good breakdown is critical. (Actually a good minimum might be 3 days for a few tasks, but 1 day or less for most)

Try to figure out how long it will take you to code each one. Be honest.

  • Double the answer
  • Double the result (so now we're up to 4x)
  • if the result is less than a day, round it up to a day.

Add everything up and consider doubling the answer.

This sounds like a lot, but remember two things:

A) Engineers are always optimistic

B) Some unknown problem will take many times what you estimate.

As you go, track your times for yourself even if your workplace doesn't require it. Look at each estimate and how long it took. Use that to revise future estimates. Iterate.

By the way, breaking the task down can take days or even weeks but can actually be considered an important part of your "Design". Getting good at this is CRITICAL. Be sure that you fully understand how you will implement each of these little tasks. If one seems nebulous then implement a prototype of that part with some unit tests to make sure you really understand it.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.