1.

What Are The Variable Naming Conventions In Vbscript?

Answer»

Variable is a named memory location used to hold a value that can be CHANGED during the script EXECUTION. VBScript has only ONE fundamental DATA type, VARIANT.

Rules for Declaring Variables:

  • Variable NAME must begin with an alphabet.
  • Variable names cannot exceed 255 characters.
  • Variables Should NOT contain a period(.)
  • Variable Names should be unique in the declared context.

Variable is a named memory location used to hold a value that can be changed during the script execution. VBScript has only ONE fundamental data type, Variant.

Rules for Declaring Variables:



Discussion

No Comment Found