Collecting & entering data in on bounces for a website. Boss told me to put in a "hard Code" for a site with no data for this category. Should I average the last 3 months of data & use that for the "hard code". What's meant by a hard code?
Software/Hardware used:
Microsoft
ASKED:
June 5, 2012 2:25 PM
UPDATED:
June 6, 2012 6:57 AM
BTW, it is not a good practice to hard code things, you should try to avoid it unless there is a very good reason to do it.
see article
A hard-code in this case essentially is a constant.
You might still want to put the value into some external “properties” file or other object rather than simply putting it directly in your program code. In the future, it should be easier to adjust the value if you can avoid changing program code. Maybe you’ll discover that a two-month or four-month average is a better one.
Tom