VBA LinkedIn Skill Assessment Answer

Here, We see VBA LinkedIn Skill Assessment Answer. This assessment test consists of 15-20 MCQs to demonstrate your knowledge of your selected skills. MCQs come from different topics – Declarations, Procedures, and Calls, Syntax, User-Defined Elements, VBE.

List of all LinkedIn Skills Assessment Answer

VBA LinkedIn Skill Assessment Answer

VBA LinkedIn Skill Assessment Answer

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

Function GetVitals(ID AsLong, Age AsLong, Optional Weight AsLong) AsString
    GetVitals="ID=" & ID &"Age=" & Age & "Weight=" & Weight
EndFunctionSub ShowVitals()
    Dim ID AsLong, Age AsLong,Weight asLong
    Debug.Print GetVitals(ID:=5,Age:=20)
    Debug.Print GetVitals(ID:=6,Age:=25,Weight:=130)
EndSubCode language: PHP (php)
  •  A
ID=5 Age = 20 Weight=
ID=6 Age = 25 Weight=130
  •  B✔
ID=5 Age = 20 Weight=0
ID=6 Age = 25 Weight=130
  •  C
ID=5 Age = 20 Weight=Null
ID=6 Age = 25 Weight=130
Code language: PHP (php)
  •  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)
  •  call Calledsub “smith”,26
  •  CalledSub(surname=”smith”, Age = 26)
  •  CalledSub(Surname:=”Smith”, Age:=26)
  •  CalledSub”smith”, 26

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

  •  There is no meaningful difference. The terms are used interchangeably.
  •  A class declares an object’s properties. An object completes the declaration by defining events and methods.
  •  An object is a template for a class.
  •  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 AsLong, ParamArray VarB() As Variant)
MsgBox VarB(0)
EndSubSub ShowValue()
Call MySub(10, "First arg", 2, 3.1416)
EndSubCode language: PHP (php)
  •  2
  •  10
  •  First arg
  •  3.1416

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

  •  an associated standard code module
  •  UserForm
  •  associated class module
  •  user form class

Q6. What is the output?

Sub UseSum()
Dim TestArray() AsInteger, Total AsIntegerReDim TestArray(1)
TestArray(1) = 6ReDim TestArray(2)
TestArray(2) = 3
Total = WorksheetFunction.Sum(TestArray)
EndSub
  •  3
  •  0
  •  9
  •  6

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

  •  Driver x
  •  call Driver(x)
  •  call Driver x
  •  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?

  •  Frame
  •  multipage
  •  TabStrip
  •  ListBox

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

Function SquareIt(ByRef Basis AsInteger) AsLong
SquareIt = Basis ^ 2EndFunctionCode language: PHP (php)
  •  sub Area()
Dim Result AsLong, Side AsInteger
Side = 5
Result = Squarelt(Side)
EndSub
  •  Sub Area()
Dim Result AsLong, Side
Side = 5
Result = SquareIt(Cint(Side))
EndSub

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()?

  •  10 rows and 10 columns
  •  10 rows and 1 column
  •  10 rows and 0 columns
  •  1 row and 10 columns

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

Range("E3:312").Range("B3").SelectCode language: JavaScript (javascript)
  •  F5
  •  F3
  •  B3
  •  E3

Q12. Which variable name is valid in VBA?

  •  _MyVar
  •  My_Var
  •  My-Var
  •  1MyVar

Reference link

Use the following rules when you name procedures, constants, variables, and arguments in a Visual Basic module: You must use a letter as the first character. You can’t use a space, period (.), exclamation mark (!), or the characters @, &, $, # in the name. Name can’t exceed 255 characters in length.

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

  •  A✔
Type CBC
Name AsStringNextAsStringEnd Type
  •  B
Type CBC
Name AsString
_Next AsStringEnd Type
  •  C
Type CBC
Name AsString
@OptionAsStringEnd Type
Code language: CSS (css)
  •  D
Type CBC
Name AsString
%ForAsStringEnd Type

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

  •  A
Save and close the project with the existing user form.
Click Insert > File.
Browse to the location of the existing project.
Right-click it and select the user form you want to duplicate.Code language: JavaScript (javascript)
  •  B
Open the existing user form in Desing Mode.
Right-click the form and select Copy.
Switch to the other project.
Right-click Module and select Paste.Code language: PHP (php)
  •  C
In the Project Explorer, right-click the user form and select Copy.
Switch to the new project.
Right-click UserForms and select Paste.Code language: PHP (php)
  •  D✔
Open the existing user form in Design Mode.
Click File > Export File.
Switch to the other project.
Click File > Import File.Code language: PHP (php)

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

  •  Word’s Macro Recorder does not record actions initiated by keyboard shortcuts.
  •  Word’s Macro Recorder does not support Find & Replace edits.
  •  Word’s Macro Recorder does not record actions initiated by clicking a button on the Ribbon’s Developer tab.
  •  Word’s Macro Recorder does not record actions that involve the selection of text by pointing with the mouse pointer.

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

  •  End
  •  Return
  •  Exit Sub
  •  Stop

Q17. How many values can MyArray hold?

Option Base 0
Sub BuildArray()
Dim MyArray(5) As Integer
Code language: PHP (php)
  •  0
  •  32,769
  •  5
  •  6

Q18. Which statement is true?

  •  Set establishes a value in a class; Let returns a value from a class.
  •  Let establishes a value in a class; Set returns a value from a class.
  •  Let establish a value in a class; Get returns a value from a class.
  •  Get establishes a value in a class; Set returns a value from a class.

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

  •  Module, Project, and Automation
  •  Procedure, Private Module, and Public Module
  •  Subroutine, Module, and Project
  •  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?

  •  MS Excel object library and MS Office object library
  •  VBA and MS Office object library
  •  VBA and Excel object library
  •  MS Excel object library and OLE automation

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

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

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

  •  Shift+F3
  •  Alt+F (Windows) or Option+F (Mac)
  •  Shift+F2
  •  Ctrl+F (Windows) or Command+F (Mac)

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

  •  in the class module’s name
  •  in the class module’s code
  •  in a standard module’s code
  •  in a standard module’s Properties

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

  •  The interface itself is part of the class module.
  •  by means of the Interface keyword and the name of the interface
  •  by means of the Implements keyword and the name of the interface
  •  The name of the interface is passed as a parameter.

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

  •  Set Option Global at the top of Module1
  •  Declare module-level variables as Private
  •  Set Module Level Scope at the top of Module1
  •  Set Option Private Module at the top of Module1

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

  •  For i = 0 To UBound(MyArray,1)
  •  For i = 1 To UBound(MyArray,1)
  •  For i = LBound(MyArray,1) To UBound(MyArray,1)
  •  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
EndEnum
  •  0
  •  1
  •  3
  •  2

Q28. Which statement declares an array?

  •  Dim MyArray() As Integer
  •  Dim MyArray() As Array
  •  Dim MyArray As Integer
  •  Dim MyArray As Array

reference

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?

  •  Set Macro Security to Trust Access to the VBA Project Object Model
  •  The project’s workbook should be protected in the Ribbon’s Review tab
  •  Include a reference to Microsoft VBA Extensibility 5.3
  •  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?

  •  A
  1. Select the project in the Project window of the Visual Basic Editor
  2. Click the Design Mode button and select Insert Mode
  •  B
  1. Select the project in the Project window of the Visual Basic Editor
  2. Click the Toolbox button and select UserForm
  •  C
  1. Select the project in the Project window of the Visual Basic Editor
  2. Right-click the Run menu and select Customize
  •  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 AsStringSub AAA()
Dim MyVar AsString
MyVar = "Procedure AAA Scope"EndSubSub BBB()
MyVar = "Procedure BBB Scope"EndSubCode language: JavaScript (javascript)
  •  MyVar equals “Procedure AAA Scope”
  •  ISNULL(MyVar) is TRUE
  •  MyVar equals “Procedure BBB Scope”
  •  MyVar is NULL

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

  •  A
PublicPropertyGet HDL() AsDouble
HDL = pHDL
EndPropertyPublicPropertyLet HDL(Value AsDouble)
pHDL = Value
EndProperty
  •  B
PropertyGet HDL() AsDouble
HDL = Value
EndPropertyPropertyLet HDL(Value AsDouble)
pHDL = Value
EndProperty
  •  C
PublicPropertyGet HDL() AsDouble
HDL = Value
EndPropertyPublicPropertyLet HDL(Value AsDouble)
pHDL = Value
EndProperty
  •  D✔
PublicPropertyGet HDL() AsSingle
HDL = pHDL
EndPropertyPublicPropertyLet HDL(Value AsDouble)
pHDL = Value
EndProperty

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

  •  The scope of constants is limited to the procedure that declares them
  •  Constants are declared at compile time, but variables are declared at run time
  •  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.
  •  The Const declaration specifies the most efficient type given the constant’s value

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

  •  two (one for the properties and one for the methods)
  •  one (each class is declared in the same module)
  •  four (one for each class)
  •  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
OnErrorResumeNext
Y = 1 / 0
MsgBox "Y = " & Y
OnErrorGoTo0
Z - (0 - 3) ^ 0.5
MsgBox "Z = " & Z
EndSubCode language: PHP (php)
  •  an error message
  •  Y and Z
  •  Z = in a message box and then a subsequent error message
  •  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 UserForm1 loaded but not visible until the FoundErrors function has checked it, and then enables processing to continue if no errors are found?

  •  A
PrivateSub CommandButton1_Click()
If FoundErrors(Me) Then _
Me.Show
EndSubCode language: CSS (css)
  •  B
PrivateSub CommandButton1_Click()
IfNot FoundErrors(UserForm1) Then _
Unload UserForm1
EndSub
  •  C
PrivateSub CommandButton1_Click()
Me.Hide
DoWhile FoundErrors(Me)
Me.Show
LoopEndSubCode language: CSS (css)
  •  D
PrivateSub CommandButton1_Click()
DoWhile FoundErrors(UserForm1)
UserForm1.show
LoopEndSubCode language: CSS (css)

Q37. Which is the correct way to structure a With block?

  •  A
With Selection
&TypeText Text:="8/24/2019"
&TypeParagraph
&TypeText Text:="1161 Alamosa Drive"EndWithCode language: JavaScript (javascript)
  •  B
With Selection
.TypeText Text:="8/24/2019"
.TypeParagraph
.TypeText Text:="1161 Alamosa Drive"EndWithCode language: JavaScript (javascript)
  •  C
With Selection
TypeText Text:="8/24/2019"
TypeParagraph
TypeText Text:="1161 Alamosa Drive"EndWithCode language: JavaScript (javascript)
  •  D
With Selection:
&TypeText Text:="8/24/2019"
&TypeParagraph
&TypeText Text:="1161 Alamosa Drive"EndWithCode language: JavaScript (javascript)

reference

Q38. Why does this code generate a “Subscript out of range” error?

Sub Example()
    Dim MyArr() As Variant
    ReDim MyArr(3, 4)
    <em>'some code</em>ReDimPreserve MyArr(4, 4)
EndSubCode language: HTML, XML (xml)
  •  Arrays cannot be resized more than once.
  •  MyArr was originally declared with three “rows”.
  •  You can resize only the last dimension of an array when you specify ReDim Preserve.
  •  The correct syntax is ReDim Preserve MyArr(0 To 4, 0 To 4).

Q39. Which subroutine declaration does not cause a compile error?

  •  Sub Called(Salary As Long, ParamArray Vals() As Variant)
  •  Sub Called(ParamArray Vals() As Variant, Salary As Long)
  •  Sub Called(Optional Salary As Long, ParamArray Vals() As Variant)
  •  Sub Called(Salary As Long, ParamArray Vals() As String)

Q40. How can a user enter data on a worksheet or document, or switch windows, while UserForm1 is displayed on the screen?

  •  Show the form with this statement: UserForm1.Show vbModal
  •  Include this statement in the code: UserForm1.Hwnd = False.
  •  Set the user from’s SpecialEffect property to frmShowModal
  •  Set the user from’s ShowModal property to False.

Q41. SubA passes MyVar to SubB. How can you ensure that MyVar has its original value when control returns to SubA?

  •  Declare SubB as Sub SubB(ByRef MyVar).
  •  Declare SubB as Sub SubB(MyVar).
  •  Declare SubB as Sub SubB(Static MyVar).
  •  Declare SubB as Sub SubB(ByVal MyVar).

Q42. Which procedure declaration is syntactically correct?

  •  A✔
Sub MySub(VarA AsString, Optional VarB _
As Variant, Optional VarC AsLong)Code language: PHP (php)
  •  B
Sub MySub(VarA AsString, Optional VarB _
As Variant, VarC AsLong)
Code language: PHP (php)
  •  C
Sub MySub(Optional VarA AsString, Optional VarB _
As Variant, VarC asLong)
Code language: PHP (php)
  •  D
Sub MySub(OPtional VarA AsString, VarB _
As Variant, Optional VarC asLong)
Code language: PHP (php)

Q43. What are the two principal kinds of procedures in VBA?

  •  Function and Event
  •  Function and Scope
  •  Subroutine and Event
  •  Subroutine and Function

Q44. Which code block compiles without error?

  •  Sub Decs() Dim MyFixed As String * 0 MyFixed = “A” MsgBox MyFixed End Sub
  •  Sub Decs() Dim MyInt% * 1 MyInt = 7 MsgBox MyInt End Sub
  •  Sub Decs() Dim MyInt% As Integer * 1 MyInt = 5 MsgBox MyInt End Sub
  •  Sub Decs() Dim MyInt, MyNum As Integer MyInt = “A” MsgBox MyInt End Sub

Q45. What is used in the Immediate window to display the current value of the variable CountValues?

  •  = CountValues= CountValues
  •  | CountValues| CountValues
  •  : CountValues: CountValues
  •  ? CountValues? CountValues

Q46. At which level can you declare a variable in this way: Private TopSecret As String?

  •  function
  •  module
  •  subroutine
  •  procedure

Q47. How can a user enter data on a worksheet or document, or switch windows, while UserForm1 is displayed on the screen?

  •  Show the form with this statement: UserForm1.Show vbModal.
  •  Set the user form’s SpecialEffect property to frmShowModal.
  •  Include this statement in the code: UserForm1.Hwnd = False.
  •  Set the user form’s ShowModal property to False.

Q48. SubA passes MyVar to SubB. How can you ensure that MyVar has its original value when control returns to SubA?

  •  Declare SubB as Sub SubB(Static MyVar).
  •  Declare SubB as Sub SubB(ByVal MyVar).
  •  Declare SubB as Sub SubB(MyVar).
  •  Declare SubB as Sub SubB(ByRef MyVar).

Q49. Arrays cannot be resized more than once.

Sub Example() Dim MyArr() As Variant ReDim MyArr(3, 4) <em>'some code ReDim Preserve MyArr(4, 4)</em>EndSubSub Example() Dim MyArr() As Variant ReDim MyArr(3, 4) <em>'some code ReDim Preserve MyArr(4, 4) End Sub</em>Code language: HTML, XML (xml)
  •  The correct syntax is ReDim Preserve MyArr(0 To 4, 0 To 4).
  •  You can resize only the last dimension of an array when you specify ReDim Preserve.
  •  MyArr was originally declared with three “rows.”
  •  Declare SubB as Sub SubB(ByRef MyVar).

Q50. Which block of code ends with the variable i equal to 5 and the variable X equal to 10?

  •  A
Do
X = X + 1
i = i + 1LoopUntil i < 5EndSubCode language: PHP (php)
  •  B
Sub Loopi()
Dim X AsInteger, i AsIntegerFor i = 1To5
X = X + 1Next I
EndSub
  •  C
Sub Loopi()
Dim X AsInteger, i AsIntegerDoUntil i < 5
X = X + 1
i = i + 1LoopEndSubCode language: HTML, XML (xml)
  •  D
Sub Loopi()
Dim X AsInteger, i AsIntegerDo
X = X + 1
i = i + 1LoopWhile i < 5EndSub

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

  •  by means of the Implements keyword and the name of an interface.
  •  by means of the Interface keyword and the name of the interface.
  •  The name of the interface is passed as a parameter.
  •  The interface itself is part of the class module.

Q52. Which part of the VBE can help you explore VBA syntax?

  •  Locals Windows
  •  object browser
  •  project explorer
  •  optional dialog

Q53. This code is trying to establish a new collection consisting of employee names and numbers. Assoc is a class. What statement is missing from the code?

Dim Associates As Collection, Assoc As CAssoc, i AsByteFor i = 1To200Set Assoc = New CAssoc
    Assoc.Name = Cells(i,1)
    Assoc.Number = Cells(i,2)
    Associates.Add Assoc
Next i
Code language: PHP (php)
  •  Set Associates = New Collection
  •  Set Associates = Collection
  •  Redim(Associates(Associates.Count+1))
  •  Redim(Associates _ (Unbound(Associates)+1))

Q54. What is the standard term for a variable or value that is passed from one subroutine or function to another?

  •  reference
  •  element
  •  argument
  •  attribute

Q55. What is the standard term for a variable or value that is passed from one subroutine or function to another?

  •  reference
  •  element
  •  argument
  •  attribute

Q56. Where is the event procedure named Worksheet_Change found?

  •  in any standard code module
  •  in the worksheet’s object module
  •  in the Worksheet_Change class module
  •  in the workbook’s code module

Q57. You are building an event procedure for a worksheet, and you edit the argument list in the event procedure’s Sub statement. What happens when the event procedure runs?

  •  There’s no difference compared to the results of a standard procedure.
  •  The results are unpredictable.
  •  The procedure won’t compile.
  •  The procedure throws a run-time error.

Q58. Based on this code, which procedure calls the subroutine SumCosts correctly?

Sub Sumosts(AcctName AsString, Amount AsLong)
    Range("A1") = AcctName
EndSubCode language: JavaScript (javascript)
  •  call SumCosts “Totalcosts”, 3
  •  SumCosts “Totalcosts”, 3
  •  SumCosts(“Totalcosts”, 3)
  •  Call SumCosts

Source

Q59. You want to declare an object that describes cars so that your VBA code can apply tests such as the following. What keyword do you use to declare Cars?

If Cars(1).Make="Ford"And Cars (1).MPG > 20Then Cars(1).Selected = TrueCode language: PHP (php)
  •  Dataframe
  •  Type
  •  object
  •  Variant

Q60. What is the purpose of the .Range(“A1:E5”).Select portion of this statement?

ActiveCell.Offset(3,4).Range("A1:E5").SelectCode language: CSS (css)
  •  If specifies the range that is to be selected after the offset is found
  •  it specifies the range of cells in which the contents of the offset are to be written
  •  It provides Resize information – in this case, the offset returns a reference of five rows and five columns
  •  It specifies the range of cells at which the offset is to be based

Q61. In Excel, what is the effect of the two statements below?

Range("b3:f5, c4:d9").Select
    	Range("b3:f5", "c4:d9").SelectCode language: CSS (css)
  •  If specifies the range that is to be selected after the offset is found
  •  it specifies the range of cells in which the contents of the offset are to be written
  •  It provides Resize information – in this case, the offset returns a reference of five rows and five columns
  •  It specifies the range of cells at which the offset is to be based

Q62. What does VBA stand for in the context of programming?

  •  Very Basic Application
  •  Visual Basic Application
  •  Volatile Business Automation
  •  Visualized Binary Algorithm
Scroll to Top