VBA Interview Questions - Part 1 - Basic questions

Hello Readers,

Welcome to Coding by Learning !!! 😀 

1. What is VBA?

VBA stands for Visual basic for application.

2. Who developed VBA?

 VBA is created my Microsoft developers team. 

3. Where developer can write VBA code?

All office based application has in-built with VBA editor. Developer needs to write their code in the editor.

How to access VBA code editor/IDE

Way1

We can access it using keyboard short cut Alt+F11.

Way2

Navigate File -> Options -> Customize Ribbon -> click on the check box next “Developer” under Main tabs - > Ok



Go to Developer Menu and click on Visual Basic



4. What is basic object model of excel application?

Application -> Workbook -> Worksheet -> Range/Charts

5. What is option explicit?

Option explicit making declaration of variables mandatory. For more details refer my blog link : Option Explicit


Happy learning & Happy coding!!!

Comment and share this post to your friends and colleagues 😀

Comments

  1. Very nice explanation....😀

    ReplyDelete
  2. Thanks for the support :)

    ReplyDelete
  3. Great! It is a good move to teach us in interview point of view. We have to face such questions first before entering into practical rounds.

    ReplyDelete
    Replies
    1. Thanks for the support, we will try to post more blogs in this regard :)

      Delete

Post a Comment

Popular posts from this blog

VBA Interview Questions - Part 2 - Variables and Data types

VBA Interview questions - screen updating

VBA Interview questions - Part 3 - Array concept