ATAR Notes: Forum

VCE Stuff => VCE Technology => VCE Mathematics/Science/Technology => VCE Subjects + Help => VCE Computing: Software Development => Topic started by: dida on November 14, 2013, 06:36:23 pm

Title: Naming Conventions
Post by: dida on November 14, 2013, 06:36:23 pm
Hi guys,

Would it be okay to say that naming conventions aid a programmer in identifying certain inputs, outputs and calculations that will occur during a program?

Obviously there is more that can be added to that, but I'm not sure if that^ statement is correct.

Thanks
Title: Re: Naming Conventions
Post by: speedy on November 14, 2013, 06:53:24 pm
Naming conventions help more with understanding the purpose/function/type of variable just be looking at it.

Identifying inputs, outputs and calculations is more to do with internal documentation - internal documentation helps the reader of the code to understand what is going on.
Title: Re: Naming Conventions
Post by: Ya Habibi on November 14, 2013, 07:46:46 pm
Naming conventions help more with understanding the purpose/function/type of variable just be looking at it.

Identifying inputs, outputs and calculations is more to do with internal documentation - internal documentation helps the reader of the code to understand what is going on.

Just as knight said, naming conventions aid the reader in helping them understand what elements or variables do, including their type. It minimises the repetition of words.
Title: Re: Naming Conventions
Post by: dida on November 14, 2013, 07:57:32 pm
Okay, got it, thanks guys :)