Visual studio 2012 multple choice questions Question 4.4. Which of the following
ID: 3582618 • Letter: V
Question
Visual studio 2012 multple choice questions
Question 4.4. Which of the following names is a valid procedure name? (Points : 2) A Procedure 1_Procedure My_Procedure None of the above
Question 5.5. When defining a function, the clause beginning with "As" does which of the following? (Points : 2) declares the function data type declares the function arguments data type declares the function name data type declares the return data type
Question 6.6. When defining a function, after the function name, you typically have the ___________, where each parameter has a defined ________. (Points : 2) parameter list, data type parameter list, return data type variables, argument list End Function, valid name.
Question 7.7. Which statement would you use to declare an array representing the state of 20 logical gates? (Points : 2) Dim Array(20) As Boolean Dim Boolean(20) As Array Dim Boolean(19) As Array Dim AnArray(19) As Boolean
Question 8.8. Which statement would you use to declare an array X with one string containing 20 words? (Points : 2) Dim X(20) As String Dim X(0) As String Dim X(19) As Words No such statement is possible
Explanation / Answer
4.4. My_Procedure
5.5. declares the return data type
6.6. return data type variables
7.7 Dim AnArray(19) As Boolean
8.8. Dim X(20) As String
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.