Basic VBA Interview Questions and Answers

Here are the most commonly asked Basic VBA Questions and Answers covered from Basics of VBA Programming.

  1. What is VBA?
    1. VBA stands for Visual Basic for Applications.
    2. VBA is Programming language available in MS Office Tools.
  2. What are Data-types?
    Data types helps to declare Variables with specific data, this helps to VBA to know the type of the data and assign the memory based on the DataType of the Variable.
  3. Name some data types?
    Boolean
    Byte
    Currency
    Date
    Double
    Integer
    Long
    LongLong
    LongPtr
    Object
    Single
    String
    Variant
  4. What is Variant Data Type and Explain it?
    Variant data type is default data type and it can hold any type of data. This will allocate maximum memory to hold the Varian Type. We use Variant data-type when we dot know the type of the data or to accept the multiple data types in a single variable.
  5. What are Scope of Variables?
    We can define variable in different levels:
    Local Level: Variables which are defined with DIM statement in a procedure or functions
    Module Level: Which are defined with DIM statement on top of a module, can be accessed in entire module
    Global Level: Which are defined Public statement at top of any module, can be accessed in entire project.

Compress PDF

Reduce the size of your PDF online How to compress a PDF Just drag-and-drop your PDF file in the box above, wait for the compression to complete and download your file. It's that simple.  https://smallpdf.com/compress-pdf Security guaranteed Your files [...]

By |Tools & Resources|

Basic VBA Intro

Basic VBA Interview Questions and Answers Here are the most commonly asked Basic VBA Questions and Answers covered from Basics of VBA Programming. What is VBA? VBA stands for Visual Basic for Applications. VBA is Programming language available in [...]

By |Learning, VBA|

Concrete Calculator

Slabs, Square Footings, or Walls length foot inch yard meter centimeter width foot inch yard meter centimeter thickness or height foot inch yard meter centimeter quantity Hole, Column, or Round Footings diameter foot inch yard meter centimeter depth or [...]

By |Tools & Resources|
  • VBA stands for Visual Basic for Applications.
  • VBA is Programming language available in MS Office Tools.
Data types helps to declare Variables with specific data, this helps to VBA to know the type of the data and assign the memory based on the DataType of the Variable
  1. Boolean
  2. Byte
  3. Currency
  4. Date
  5. Double
  6. Integer
  7. Long
  8. LongLong
  9. LongPtr
  10. Object
  11. Single
  12. String
  13. Variant
Variant data type is default data type and it can hold any type of data. This will allocate maximum memory to hold the Varian Type. We use Variant data-type when we dot know the type of the data or to accept the multiple data types in a single variable.
Variables are defined in different levels:
  • Local Level: Variables which are defined with DIM statement in a procedure or functions
  • Module Level: Which are defined with DIM statement on top of a module, can be accessed in entire module
  • Global Level: Which are defined Public statement at top of any module, can be accessed in entire project.
Arrays are type of variables allows to store multiple data values in one variable. It can contain multiple Dimensions like 2-dimensions, 3-dimensions,etc.
 We can redefine the size of the array using REDIM statement. We use PARSE statement will to keep the previously stored data in the data.
Your Content Goes Here
Your Content Goes Here
2019-02-01T18:44:18-08:00By |Categories: Learning, VBA|Comments Off on Basic VBA Intro

Share This Post With Others!

Title

Go to Top