2013年微軟認(rèn)證練習(xí)及答案59

字號(hào):

為大家收集整理了《2013年微軟認(rèn)證練習(xí)及答案59》供大家參考,希望對(duì)大家有所幫助?。?!
    172. .NET程序集的配置文件使用()格式書寫.A
    *A.XML
    B.HTML
    C.C#源程序
    D.VB.NET源程序
    173..NET類型系統(tǒng)中所有的引用類型都繼承自System.Object且不繼承自()類型.B
    A System.Type
    *B System.ValueType
    C System.Object
    D System.Int32
    174. c#中的類型int對(duì)應(yīng).NET類庫(kù)中的(C)
    A.System.Single
    B.System.Int16
    *C.System.Int32
    D.System.Int64
    175.調(diào)用以下語(yǔ)句后,obj的值是什么 (A)
    object obj =100;
    obj.ToString();
    *A 100
    B ""
    C "100"
    D "obj"
    176.執(zhí)行以下語(yǔ)句后,變量str的值是什么 (B)
    string str ="hello world";
    str=str.ToUpper;
    A. "Hello World"
    *B. "HELLO WORLD"
    C. "Hello World"
    D. "STR"