What are the different data types supported in VBScript?

1 Answers
Answered by suresh

What are the different data types supported in VBScript? - Interview Question

What are the different data types supported in VBScript?

VBScript supports the following data types:

  1. Boolean: Represents true or false values.
  2. Integer: Represents whole numbers.
  3. Long: Represents larger whole numbers.
  4. Single: Represents single-precision floating-point numbers.
  5. Double: Represents double-precision floating-point numbers.
  6. String: Represents sequences of characters.
  7. Date: Represents date and time values.
  8. Object: Represents references to objects.
  9. Variant: Represents a variable that can hold any type of data.

These data types provide flexibility and versatility for working with different types of values in VBScript.

Answer for Question: What are the different data types supported in VBScript?