Visual Basic for Applications (VBA) LinkedIn Skill Assessment Answer

Here, We see Visual Basic for Applications (VBA) LinkedIn Skill Assessment Answer. This assessment test consists 15-20 MCQs to demonstrate your knowledge in your selected skills. MCQs comes from different topics – Declarations, Procedures and Calls, Syntax, User-Defined Elements, VBE.


Visual Basic for Applications (VBA) LinkedIn Skill Assessment :-

Q1. Which two sets of values are printed by this function and sub?

Function GetVitals(ID As Long, Age As Long, Optional Weight As Long) As String
    GetVitals="ID=" & ID &"Age=" & Age & "Weight=" & Weight
End Function
Sub ShowVitals()
    Dim ID As Long, Age As Long,Weight as Long
    Debug.Print GetVitals(ID:=5,Age:=20)
    Debug.Print GetVitals(ID:=6,Age:=25,Weight:=130)
End Sub
A
ID=5 Age = 20 Weight=
ID=6 Age = 25 Weight=130
  1. B✔️
ID=5 Age = 20 Weight=0
ID=6 Age = 25 Weight=130
  1. C
ID=5 Age = 20 Weight=Null
ID=6 Age = 25 Weight=130
  1. D
ID=5 Age = 20
ID=6 Age = 25 Weight=130

Q2. This code shows the first statement of CalledSub. Which calling statement will work properly?

Sub CalledSub(Surname, Age)

  1. call Calledsub “smith”,26
  2. calledsub (surname=”smith”, Age = 26)
  3. calledsub (Surname:=”Smith”, Age:=26)
  4. calledsub “smith”, 26✔️

Q3. What is the principal difference between a class and an object?

  1. There is no meaningful difference. The terms are used interchangeably.
  2. A dass declares an object’s properties. An object completes the declaration by defining events and methods.
  3. An object is a template for a class.
  4. A class describes the design of an object. An object is an instance of that design.✔️

Q4. What value does the MsgBox statement display?

Sub MySub(VarA As Long, ParamArray VarB() As Variant)
MsgBox VarB(0)
End Sub
Sub ShowValue()
Call MySub(10, "First arg", 2, 3.1416)
End Sub
  1. 2
  2. 10
  3. First arg✔️
  4. 3.1416

Q5. What object is needed to put a userform module in a VBA project?

  1. associated standard code module
  2. UserForm
  3. associated class module
  4. userForm class

Q6. What is the output?

Sub UseSum()
Dim TestArray() As Integer, Total As Integer
ReDim TestArray(1)
TestArray(1) = 6
ReDim TestArray(2)
TestArray(2) = 3
Total = WorksheetFunction.Sum(TestArray)
End Sub
  1. 3✔️
  2. 0
  3. 9
  4. 6

Q7. The Driver subroutine is declared by Sub Driver (Y). Which statement results in a compile error?

  1. Driver x
  2. call Driver(x)
  3. call Driver x
  4. Driver (X)

Q8. You have several variables to display on a user form, and there are too many variables to display at once. Which control best enables the user to see all the variables?

  1. Frame
  2. multipage
  3. TabStrip
  4. ListBox✔️

Q9. Below is a function named SquareIt. Which version of the subroutine named Area results in a compile error?

Function SquareIt(ByRef Basis As Integer) As Long
SquareIt = Basis ^ 2
End Function
  1. sub Area()
Dim Result As Long, Side As Integer
Side = 5
Result = Squarelt(Side)
End Sub
  1. Sub Area()
Dim Result As Long, Side
Side = 5
Result = SquareIt(Cint(Side))
End Sub

Q10. EmailAddress() is an array. It is declared by Dim EmailAddress(10) As String, and option Base 1 is in effect. How many rows and columns are in EmailAddress()?

  1. 10 rows and 10 columns
  2. 10 rows and 1 column✔️
  3. 10 rows and 0 columns
  4. 1 row and 10 columns


Q11. Which cell is selected if you run this code?

Range("E3:312").Range("B3").Select

  1. F5
  2. F3✔️
  3. B3
  4. E3

Q12. Which variable name is valid in VBA?

  1. _MyVar
  2. My_Var✔️
  3. My-Var
  4. 1MyVar

Reference link

Q13. Which is a valid definition of a user-defined data type?

  1. Type CBC
    Name As String
    Next As String
    End Type✔️

  2. Type CBC
    Name As String
    _Next As String
    End Type

  3. Type CBC
    Name As String
    @Option As String
    End Type

  4. Type CBC
    Name As String
    %For As String
    End Type

Q14. What is one way to duplicate a user form from one project into a different project?

  1. A
1. Save and close the project with the existing user form.
2. Click Insert > File.
3. Browse to the location of the existing project.
4. Right-click it and select the user-form you want to duplicate.
  1. B
1. Open the existing user form in Desing Mode.
2. Right-click the form and select Copy.
3. Switch to the other project.
4. Right-click Module and select Paste.
  1. C
1. In the Project Explorer, right-click the user form and select Copy.
2. Switch to the new project.
3. Right-click UserForms and select Paste.
  1. D✔️
1. Open the existing user form in Design Mode.
2. Click File > Export File.
3. Switch to the other project.
4. Click File > Import File.

Q15. The recording of a macro in Word is likely to be an incomplete record of the user’s actions. Why?

  1. Word’s Macro Recorder does not record actions initiated by keyboard shortcuts.
  2. Word’s Macro Recorder does not support Find & Replace edits.
  3. Word’s Macro Recorder does not record actions initiated by clicking a button on the Ribbon’s Developer tab.
  4. Word’s Macro Recorder does not record actions that inlove selection of text by pointing with the mouse pointer.✔️

Q16. Which statement should precede a subroutuine’s error handler?

  1. End
  2. Return
  3. Exit Sub✔️
  4. Stop

Q17. How many values can MyArray hold?

Option Base 0
Sub BuildArray()
Dim MyArray(5) As Integer
  1. 0
  2. 32,769
  3. 5
  4. 6✔️

Q18. Which statement is true?

  1. Set establishes a value in a class; Let returns a value from a class.
  2. Let establishes a value in a class; Set returns a value from a class.
  3. Let establishes a value in a class; Get returns a value from a class.✔️
  4. Get establishes a value in a class; Set returns a value from a class.

Q19. A declaration has scope, which has three levels. What are they?

  1. Module, Project and Automation
  2. Procedure, Private Module and Public Module✔️
  3. Subroutine, Module and Project
  4. Procedure, Project and Global

Q20. There are two references that must be selected in the Visual Basic Editor in order for any Visual Basic code to run in Excel. What are these two references?

  1. MS Excel object library and MS Office object library
  2. VBA and MS Office object library
  3. VBA and Excel object library✔️
  4. MS Excel object library and OLE automation


Q21. Which action will cause your project to reset its variables?

  1. Edit the list of arguments of the current routine while in debug mode.
  2. Click End in a run-time error dialog.✔️
  3. Add an ActiveXcontrol to a worksheet.
  4. all of these answers

Q22. Which keyboard shortcut causes VBE to locate the declaration of a procedure?

  1. Shift+F3
  2. Alt+F (Windows) or Option+F (Mac)
  3. Shift+F2✔️
  4. Ctrl+F (Windows) or Command+F (Mac)

Q23. When you define a new class of object, where do you assign a name to it?

  1. in the class module’s name
  2. in the class module’s code
  3. in a standard module’s code
  4. in a standard module’s Properties✔️

Q24. How does a class module indicate that it uses a particular interface?

  1. The interface itself is part of the class module.
  2. by means of the Interface keyword and the name of the interface
  3. by means of the Implements keyword and the name of the interface
  4. The name of the interface is passed as a parameter.✔️

Q25. What is needed for the contents of Module1 to be availble to other modules in a VBA project, but not to any other VBA project?

  1. Set Option Global at the top of Module1
  2. Declare module-level variables as Private
  3. Set Module Level Scope at the top of Module1
  4. Set Option Private Module at the top of Module1✔️

Q26. When used with an array named MyArray, what is the preerred way to set beginning and ending values of a loop control variable?

  1. For i = 0 To UBound(MyArray,1)
  2. For i = 1 To UBound(MyArray,1)
  3. For i = LBound(MyArray,1) To UBound(MyArray,1)✔️
  4. It depends on whether Option Base 0 or Option Base 1 is in use.

Q27. What is the value of Test3?

Enum TestEnum
    Test1
    Test2
    Test3
End Enum
  1. 0
  2. 1
  3. 3
  4. 2✔️

Q28. Which statement declares an array?

  1. Dim MyArray() As Integer
  2. Dim MyArray() As Array✔️
  3. Dim MyArray As Integer
  4. Dim MyArray As Array

Q29. To use VBA code to maintain a different VBA project, you can make use of VBA’s extensibility. What is needed to enable extensibility?

  1. Set Macro Security to Trust Access to the VBA Project Object Model
  2. The project’s workbook should be protected in the Ribbon’s Review tab
  3. Include a reference to Microsoft VBA Extensibility 5.3✔️
  4. Include a reference to Microsoft VBA Extensibility 5.3 and set Macro Security to Trust Access to the VBA Project Object Model

Q30. How do you add a user form to a VBA project?

  1. A
1. Select the project in the Project window of the Visual Basic Editor
2. Click the Design Mode button and select Insert Mode
  1. B
1. Select the project in the Project window of the Visual Basic Editor
2. Click the Toolbox button and select UserForm
  1. C
1. Select the project in the Project window of the Visual Basic Editor
2. Right-click the Run menu and select Customize
  1. D✔️
1. Select the project in the Project window of the Visual Basic Editor
2. Click Insert > UserForm


Q31. Explicit variable declaration is required. MyVar is declared at both the module and the procedure level. What is the value of MyVar after first AAA() and then BBB() are run?

Dim MyVar As String
Sub AAA()
Dim MyVar As String
MyVar = "Procedure AAA Scope"
End Sub
Sub BBB()
MyVar = "Procedure BBB Scope"
End Sub
  1. MyVar equals “Procedure AAA Scope”
  2. ISNULL(MyVar) is TRUE
  3. MyVar rquals “Procedure BBB Scope”✔️
  4. MyVar is NULL

Q32. Which code block from class modules returns a compile error?

  1. A
Public Property Get HDL() As Double
HDL = pHDL
End Property
Public Property Let HDL(Value As Double)
pHDL = Value
End Property
  1. B
Property Get HDL() As Double
HDL = Value
End Property
Property Let HDL(Value As Double)
pHDL = Value
End Property
  1. C
Public Property Get HDL() As Double
HDL = Value
End Property
Public Property Let HDL(Value As Double)
pHDL = Value
End Property
  1. D✔️
Public Property Get HDL() As Single
HDL = pHDL
End Property
Public Property Let HDL(Value As Double)
pHDL = Value
End Property

Q33. If VBA code declares FileCount as a constant rather than a variable, the code tends to run faster. Why is this?

  1. The scope of constants is limited to the procedure that declares them
  2. Constants are declared at compile time, but variables are declared at run time
  3. Once declared in a project, the value of a constant cannot be changed. There is no need to look up the current value of FileCount when it is a constant.
  4. The Const declaraton specifies the most efficient type given the constant’s value✔️

Q34. A VBA project must declare four classes. How many class modules are needed?

  1. two (one for the properties and one for the methods)
  2. one (each class is declared in the same module)
  3. four (one for each class)
  4. as many as are required by the variable types that the objects return✔️

Q35. What does this code display?

Sub MakeErrors()
Dim Y As Variant, Z As Variant
On Error Resume Next
Y = 1 / 0
MsgBox "Y = " & Y
On Error GoTo 0
Z - (0 - 3) ^ 0.5
MsgBox "Z = " & Z
End Sub
  1. an error message
  2. Y and Z
  3. Z = in a message box and then a subsequent error message✔️
  4. Y = in a message box and then a subsequent error message

Q36. The VBA code block shown in the following four options runs when UserForm1’s CommandButton1 button is clicked. Which block of code leaves UserFrom1 loaded but not visible until the FoundErrors function has checked it, and then enables processing to continue if no errors are found?

  1. A
Private Sub CommandButton1_Click()
If FoundErrors(Me) Then _
Me.Show
End Sub
  1. B
Private Sub CommandButton1_Click()
If Not FoundErrors(UserForm1) Then _
Unload UserForm1
End Sub
  1. C✔️
Private Sub CommandButton1_Click()
Me.Hide
Do While FoundErrors(Me)
Me.Show
Loop
End Sub
  1. D✔️
Private Sub CommandButton1_Click()
Do While FoundErrors(UserForm1)
UserForm1.show
Loop
End Sub


LinkedIn Visual Basic for Applications Quiz Answers, LinkedIn Visual Basic for Applications Assessment Answers, Visual Basic for Applications LinkedIn Quiz Answers, Visual Basic for Applications Assessment LinkedIn Answers, LinkedIn Skill Quiz Answers Visual Basic for Applications, LinkedIn Visual Basic for Applications Quiz, Visual Basic for Applications LinkedIn Quiz, LinkedIn Quiz Answers Visual Basic for Applications, LinkedIn Visual Basic for Applications Assessment Quiz Answers, LinkedIn Skill Assessment Visual Basic for Applications Answers, Visual Basic for Applications LinkedIn Quiz, LinkedIn Visual Basic for Applications Assessment Test Answers, LinkedIn Visual Basic for Applications Test Answers, LinkedIn Visual Basic for Applications Skill Assessment Answers, LinkedIn Skill Assessment Answers Visual Basic for Applications, Visual Basic for Applications LinkedIn Assessment Answers, LinkedIn Visual Basic for Applications Assessment Answers, Visual Basic for Applications LinkedIn Assessment Answers, Answers to LinkedIn Quizzes, LinkedIn Skill Assessment Answers GitHub, LinkedIn Assessment Test Answers, LinkedIn Skill Assessments Answers, LinkedIn assessment answers, LinkedIn skill quiz answers, LinkedIn assessment quiz answers, LinkedIn assessment answers 2021, LinkedIn test answers, LinkedIn quiz answers, LinkedIn assessment answers 2022, LinkedIn skill quiz questions, LinkedIn learning quiz answers, LinkedIn quizzes, skills assessment test LinkedIn, LinkedIn skills test, all LinkedIn skill assessments, LinkedIn exam, LinkedIn skill assessment, skill quiz LinkedIn, skills quiz LinkedIn, LinkedIn assessment test, LinkedIn assessments, LinkedIn answers, LinkedIn learning answers, all test answers, skill quiz, LinkedIn badges skills, quiz test answers, quiz answer, skill check answers, LinkedIn skills assessment answers, LinkedIn skill test answers, LinkedIn tests answers, LinkedIn test answers, LinkedIn quizzes answers, LinkedIn learning quiz answers, LinkedIn skill assessment answers, LinkedIn skill quiz answers, LinkedIn quiz answers, LinkedIn skill assessment answers GitHub, LinkedIn skill quiz, LinkedIn skills quiz, LinkedIn quiz, skill quiz LinkedIn, LinkedIn learning answers, LinkedIn assessment test, LinkedIn assessment answers, Visual Basic for Applications (VBA) LinkedIn Skill Assessment Answer, Visual Basic for Applications (VBA) LinkedIn Skill Assessment Answer, Visual Basic for Applications (VBA) LinkedIn Skill Assessment Answer


Leave a Comment

Scroll to Top