Coding Standards

  Home  Applications Programs  Coding Standards


“Coding standards/conventions Interview Questions and Answers will guide you that Coding standards are a set of guidelines for a specific programming language that recommend programming style, practices and methods for each aspect of a piece program written in this language. These conventions usually cover file organization, so learn coding standards and conventions with this Coding standards/conventions Interview Questions with Answers guide”



26 Coding Standards Questions And Answers

21⟩ Explain Rational Robots Coding Standards?

The standards are for all testers using the IDE of Rational Robot to develop their automated test scripts.

The mission is to reduce maintenance costs when it comes to changes. This is done by setting up rules on how to name variables, functions, scripts and libraries, where to place them and when to use them.

The standards do not provide any information about the use of frameworks, best practices, Rational Robot settings and version control. These are all provided in separated documents.

 327 views

22⟩ Explain Naming Convention in Local scope variables?

Description

Variables represent values that can be changed within a procedure or function. Local scope variables are placeholders that reside within a function- or a script-body.

Syntax

[Prefix]+[ShortDescription]

[Prefix] is a lowercase letter (either "n", s", "str", "d" or "t" appropriate to the type it represents)

[ShortDescription] is a corresponding name of what the variable stands for.

If [ShortDescription] consists of more then one word they are all separated using a capital letter for each new word.

 293 views

23⟩ Explain Naming Convention Constants?

Description

Constants are “variables” that cannot be changed within a function- or script-body. The value will always be the same during script-execution.

Syntax

"AX_" + [PURPOSE] + {OPTIONAL}

If the constant name consists of more than one word those will be separated using an underscore.

Examples

· AX_AUT_VERSION

· AX_DEFAULT_URL

 292 views

24⟩ Explain Naming Convention in Module-level variables (member-vars)?

Description

If variables are placed outside a function body their scope will be different from a local scope variable, therefore we flag those variables with a prefix "m_" that is very common in object oriented languages even though SQABasic is not an object oriented programming language.

Syntax

"m_" + [Prefix]+[ShortDescription]

[Prefix] is a lowercase letter (either "n", s", "str", "d" or "t" appropriate to the type it represents) [ShortDescription] is a corresponding name of what the variable stands for. If [ShortDescription] consists of more then one word these are all separated using a capital letter for each new word.

Examples

· m_nCountDatabaseRecords

· m_strLastname

· m_sPassword

 261 views

25⟩ Explain Naming Convention in Arrays?

Description

Arrays in many programming-languages usually represent a fixed list of values (e.g. a list of lastnames). However within SQABasic the size for an array can either be fixed or grow if the number of items in the list is not known during compilation of the source code.

Syntax

"a" + [Prefix]+[ShortDescription]

Letter “a” indicates that the variable is of type array. [Prefix] is a lowercase letter that represents the type of variables in the array. The rules for [Prefix] are the same as for “Local scope variables”.

Examples

· asPersonList

· anNumberList

 313 views

26⟩ Explain Naming Convention Functions?

Description

Functions abstract a sequence of SQABasic code statemens in either a script-file (.REC) or a library-file (.SBL) and cover them with a reasonable name that is explanatory to others.

Syntax

[SOURCE]+"_"+[PerformedAction]+[Parameterlist]+" As " + [ReturnValue]

[SOURCE] is an abbr. of the library name it is implemented at. [PerformedAction] consists of two words, an action(verb) and an object the action is performed against. [Parameterlist] is a sequence of placeholders the function is feeded with. [ReturnValue] is the value returned by the function

Examples

· UTIL_CountItemInString(sHaystrack$, sNeedle$) As Integer

· SERVICE_Start(sServiceName$) As Integer

· SERVICE_StopAllServices() As Integer

The function name must always correspond to what the function is actually doing. That is the script developer knows what the function is doing without the need to dig any deeper into its implementation. If the function name is called "NaviagteTo("a-web-link") it is expected that the function does only navigate to that specific web-link and not doing additional actions that is deletion and/or creation of any records in the DBMS.

 304 views