Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

visual studio 2012 multiple choice questions Question 1. 1. Which of the followi

ID: 3582588 • Letter: V

Question

visual studio 2012 multiple choice questions Question 1.1. Which of the following statements are true for a string variable?
(Points : 2)        The variable content can not be converted into Char.

       The variable data type can be converted into Integer.

       The variable content may be converted into Integer.

       The variable content can be converted into Date.
Question 2.2. A StreamWriter variable can call which of the following methods? (Points : 2)        WriteLine( )
       Write( )
       Close( )
       All of the above Question 3.3. A StreamReader variable can call which of the following methods? (Points : 2)        Read( )
       Write( )
       Peak( )
       All of the above 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 visual studio 2012 multiple choice questions

Explanation / Answer

Answer:

Question 1

1.The variable content can not be converted into Char.
TRUE

2.The variable content can be converted into Date.

TRUE

Question 2.

All the above

Question 3

Read( )
Write( )

Question 4

My_Procedure

Question 5

declares the function data type

declares the return data type