填空題尚未初始化的、不定型變量的值都為()

您可能感興趣的試卷

你可能感興趣的試題

4.多項選擇題為了將字符串str=“12345”轉(zhuǎn)換成整數(shù)12345,可以使用以下哪條語句?()

A.Dim num As Integer = Integer.Parse(str)
B.Dim Num As Integer = str.ToInt()
C.Dim num As Integer = Convert.ToInt32(str)
D.Dim num As Integer = CType(str, Integer)

5.單項選擇題

關(guān)于下面代碼的敘述不正確的是()

A.代碼中參數(shù)數(shù)組必須改為值傳遞
B.代碼中參數(shù)數(shù)組必須改成過程定義的最后一個參數(shù)
C.代碼中參數(shù)數(shù)組中的每一個元素的數(shù)據(jù)類型應該和ParamArray的數(shù)據(jù)類型相同。
D.代碼中參數(shù)數(shù)組根據(jù)需要可以改成多位數(shù)組。