亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

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

        字號(hào):

        為大家收集整理了《2013年微軟認(rèn)證練習(xí)及答案95》供大家參考,希望對(duì)大家有所幫助!??!
            1.接口ISomeInterface中只包含一個(gè)屬性Name,該屬性滿足:
            公有
            可讀可寫
            字符串類型
            則該接口的定義應(yīng)為(C).
            interface SomeInterface
            {public readonly string Name(){get;set;}}
            interface SomeInterface
            {public string Name{get;set;}};
            c interface SomeInterface
            { string Name{get;set;}}
            D,interface SomeInterface
            {readonly Name(){get;set;}}
            2.,設(shè)計(jì)類SomeClass時(shí),若希望字段Data只能被同一程序集的所有派生類訪問,可將該字段的訪問修飾符設(shè)為(A).
            A,Internal
            B,Protected
            C,Private
            D,Pubic
            3,x,y都是類SomeClass的變量.為了測試這兩個(gè)變量是否引用同一個(gè)對(duì)象,應(yīng)使用類SomeClass的下列那個(gè)方法進(jìn)行判斷 (B)
            A,Tostring
            B,ReferenceEquals
            C,Equals
            D,GetHashCode
            4,字符串?dāng)?shù)組strarray包含以下元素:
            String[] strarray={"this","is","a","test"};
            則以下語句在控制臺(tái)的輸出是什么 (D)
            String strafterjoin =String.Join(null,strarray)
            Console.WriteLine(strafterjoin)
            A,"this","is","a","test"
            B,this is a test
            C,"this" "is" "a" "test"
            D,thisisatest
            5. 某程序集的版本號(hào):"2.0.1.112",則該程序集的修訂號(hào)為(D)
            A 1 B 2 C 0 D 112
            某程序集的版本號(hào):"2.0.1.112",則該程序集的內(nèi)部版本號(hào)為(B)
            A 2 B 1 C 112 D 0