Corporate Training
Request Demo
Click me
Menu
Let's Talk
Request Demo

Top Interview Questions for Excel VBA 2019

by Bhavya Sri, on May 23, 2017 5:48:05 PM

Top Interview Questions for Excel VBA 2019

Q1. Explain what is VBA or Visual Basic for Applications?

Ans: VBA stands for Visual Basic for Applications; it is an event-driven programming language developed by Microsoft. It is predominantly used with Microsoft office applications like MS-word, MS-Access, and MS-Excel.

<click here for Excel VBA>

Q2. Mention where you can write your VBA program for Macro?

Ans: The module is the place where you can write VBA program for Macro, to insert a Module navigate to Insert -> Module.

Q3. Mention what are the comments style used in VBA?

Ans: Comments are used to document the program log`ic and the user information with which other programmers can work seamlessly on the same code in the future. There are mainly two methods in VBA to represent comments.

 

  1. Any statement that begins with a single quote is treated as a comment.
  2. Or you can use statement REM instead of single quotation mark (‘)

Q4. In VBA how we can declare variable and constant?

Ans: In VBA, variable can be declared with the keyword “DIM” while constant is declared with keyword “Const.”

Q5. Mention how can you comment and uncomment blocks of code in the office VBA editor?

Ans: In office VBA editor, you can comment and uncomment blocks of code by following steps:

  • In the VBA editor go to View->Toolbars -> Customise… OR right click on the toolbar and select Customise
  • Select the edit menu on the left, under the commands tab
  • When you scroll down you can see two icons, “Comment Block” and “Uncomment ”
  • When you drag and drop these onto your toolbar, you will have easy access to highlight a block of code and do action on it.

Q6. Explain what is ADO, ODBC, and OLEDB?

Ans: ADO: ActiveX Data Objects or ADO is a universal data access framework that encompasses the functionality of DAO.

ODBC: Open Database Connectivity or ODBC is a technology that enables a database client application to connect to an external database.

OLEDB: It is a low-level programming interface designed to access a wide variety of data access object linking and embedding (OLE)

Q7. Explain about function pointers in VBA?

Ans: The VBA (Visual Basic Information) have flexible applications, but there is a limitation to a function pointer in VBA.  Windows API has inadequate support for function pointers because it has the ability to use the function but not the functional support to call back the function.  It has inbuilt support for the call but not for a callback.

 

Q8. Explain how “reference counting” in VBA is done?

Ans: In VBA, soon a variable goes out of scope, the reference counter on the reference object is decremented. When you assign the object reference to another variable, the reference counter is incremented. While when your reference count reaches to zero it terminates the event.

Q9. How can you decrease the reference counter explicitly?

Ans: To decrease the reference counter explicitly, you need to set a variable to “Nothing”.

Q10. Explain what is COM (Component Object Model) objects in VBA?

Ans: COM objects are usually .dll files, and are compiled executable programs.

Q11. Explain how can you dial a phone number through VBA?

Ans: In order to dial a phone number through VBA, you need to follow the following steps:

  • Shell command in VBA can be used to start the dialer present in Windows O.S.
  • To connect to your modem, the phone number can be used.
  • With the help of send keys and shell command, you can dial to your user.
  • Sendkey dictate the windows to dial according to the keystrokes of the application while Shell activates the Windows application.
  • A macro can be used to initiate the card file program which triggers the auto-dialer feature.

Q12. Explain what is the meaning of “Option Explicit”? Where it should be used?

Ans: “Option Explicit” makes the declaration of variables mandatory.  Line explicit function makes the compiler to determine all the variables that are not declared by the dim statement.  This command diminishes the problem of type errors significantly.  It is used in VBA because it deals with information-rich application in which type errors are common. Before starting any, sub-procedures it can be used inside a module.

Q13. Explain how can you pass arguments to VBA functions?

Ans: When arguments are passed to VBA functions, they can be passed in two ways:

  1. ByVal: When an argument is passed by Value, then it means that only value is passed to the procedure, and any changes that are made to the argument inside the procedure will be lost when the procedure is exited.
  2. ByRef: When the argument is passed by reference than the actual address of the argument is passed to the procedure. Any changes that are made to the argument inside the procedure will be recalled when the procedure is exited.

Q14. Mention the method that is called from the ObjectContext object to notify MTS that the transaction was unsuccessful or successful?

Ans: Set about and set complete method are called from the ObjectContext object to notify MTS that the transaction was unsuccessful or unsuccessful.

 

Q15. What is the code to find a last used Row in a column or last used Column of a row?

Ans: To find the last row in a column, the command used is End(xlUp) and to find last column in a row, the command used is End(xlToLeft).

Q16. Mention the difference between the Subroutines and Functions in VBA?

Ans: The difference between the Subroutines and Functions is that:

  • Subroutines never return a value, but functions do return values.
  • Subroutines could change the values of the actual arguments while a function could not change the value of actual arguments.

Q17. Explain what is the difference between CurrentRegion properties and UsedRange?

Ans:

  • CurrentRegion: The current region is a range bounded by any combination of blank columns and rows.
  • UsedRange: This property is used to select the range of used cells on a worksheet. It returns a Range object that represents the used range on the specific worksheet.

Q18. Explain how to debug a VBA code?

Ans: To debug a VBA code, follow the steps:

  • Using Breakpoints (F9).
  • Step by step execution (F8).
  • Print & Immediate Window and Watch the window.

Q19. How can you stop VBA script when it goes into the infinite loop?

Ans: By pressing Cntrl+ Pause Break key one can stop VBA script when it goes into an infinite loop.

Q20. Mention which property of the menu cannot be set at runtime?

Ans: At runtime Name property of the menu cannot be set.

Q21. Mention whether VBA has a dictionary structure?

Ans: Yes, VBA does have a dictionary structure. You can set a reference to dictionary like:

  • Set dict = CreateObject(“Scripting.Dictionary”)
  • OR Dim dict as New Scripting.Dictionary.
Topics:Excel interview Questions for freshersExcel VBA interview questions 2019interview questions for Excel VBAInformation Technologies (IT)

Comments

Subscribe

Top Courses in Python

Top Courses in Python

We help you to choose the right Python career Path at myTectra. Here are the top courses in Python one can select. Learn More →

aathirai cut mango pickle

More...