1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 三泰電子系統分析師筆試題目

        時間:2024-11-12 09:03:53 林惜 筆試題目 我要投稿
        • 相關推薦

        三泰電子系統分析師筆試題目

          在學習和工作中,我們都不可避免地會接觸到試題,試題可以幫助參考者清楚地認識自己的知識掌握程度。什么類型的試題才能有效幫助到我們呢?以下是小編整理的三泰電子系統分析師筆試題目,僅供參考,歡迎大家閱讀。

        三泰電子系統分析師筆試題目

          三泰電子系統分析師筆試題目 1

          選擇題

          1:關于ASP.NET中的代碼隱藏文件的描述正確的是:

          A.Web窗體頁的程序的邏輯由代碼組成,這些代碼的創建用于與窗體交互。編程邏輯唯一與用戶界面不同的文件中。該文件稱作為“代碼隱藏”文件,如果用C#創建,該文件

          B.項目中所有Web窗體頁的代碼隱藏文件都被編譯成.EXE文件

          C.項目中所有的Web窗體頁的代碼隱藏文件都被編譯成項目動態鏈接庫(.dll)文件

          D.以上都不正確

          2:在下述選項時,沒有構成死循環的程序是

          A.int i=100 while (1) { i=i%100+1; if (i>100) break; }

          B.for (;;);

          C.int k=1000; do { ++k; }while(k>=10000);

          D.int s=36; while (s);--s;

          3:In Object Oriented Programming, how would you describe encapsulation?

          A.The conversion of one type of object to another.

          B.The runtime resolution of method calls.

          C.The exposition of data.

          D.The separation of interface and implementation.

          4:設有變量說明語句int a=1,b=0;

          則執行以下程序段的輸出結果為( )。

          switch (a)

          {

          case 1:

          switch (b)

          {

          case 0:printf("**0**");break;

          case 1:printf("**1**");break;

          }

          case 2:printf("**2**");break;

          }

          printf(" ");

          A.**0**

          B.**0****2**

          C.**0****1****2**

          D.有語法錯誤

          5:abstract class BaseClass

          {

          public virtual void MethodA()

          {

          Console.WriteLine("BaseClass");

          }

          public virtual void MethodB()

          {

          }

          }

          class Class1: BaseClass

          {

          public void MethodA()

          {

          Console.WriteLine("Class1");

          }

          public override void MethodB()

          {

          }

          }

          class Class2: Class1

          {

          new public void MethodB()

          {

          }

          }

          class MainClass

          {

          public static void Main(string[] args)

          {

          Class2 o = new Class2();

          o.MethodA();

          }

          }

          請問,此程序輸出結果是:

          A.BaseClass

          B.BassClass Class1

          C.Class1

          D.Class1 BassClass

          6:在C#中利用Socket進行網絡通信編程的一般步驟是:建立Socket偵聽、( )、利用Socket接收和發送數據。

          A.建立Socket連接

          B.獲得端口號

          C.獲得IP地址

          D.獲得主機名

          7:

          下述程序代碼中有語法錯誤的行是( )。

          int i,ia[10],ib[10]; /*第一行*/

          for (i=0;i<=9;i++) /*第2行*/

          ia[i]=0; /*第3行*/

          ib=ia; /*第4行*/

          下述程序代碼中有語法錯誤的行是( )。

          int i,ia[10],ib[10]; /*第一行*/

          for (i=0;i<=9;i++) /*第2行*/

          ia[i]=0; /*第3行*/

          ib=ia; /*第4行*/

          A.第1行

          B.第2行

          C.第3行

          D.第4行

          8:Which of the following operations can you NOT perform on an ADO.NET DataSet?

          A.A DataSet can be synchronised with a RecordSet.

          B.A DataSet can be synchronised with the database.

          C.A DataSet can be converted to XML.

          D.You can infer the schema from a DataSet

          9:Which of these string definitions will prevent escaping on backslashes in C#?

          A.string s = #”n Test string”;

          B.string s = “’n Test string”;

          C.string s = @”n Test string”;

          D.string s = “n Test string”;

          10:int[][] myArray3=new int[3][]{new int[3]{5,6,2},new int[5]{6,9,7,8,3},new int[2]{3,2}}; myArray3[2][2]的'值是:

          A.9

          B.2

          C.6

          D.越界

          11:在軟件生命周期中,下列哪個說法是不準確的?

          A.軟件生命周期分為計劃、開發和運行三個階段

          B.在計劃階段要進行問題焉醛和需求分析

          C.在開發后期要進行編寫代碼和軟件測試

          D.在運行階段主要是進行軟件維護

          12:聲明一個委托public delegate int myCallBack(int x); 則用該委托產生的回調方法的原型應該是

          A.void myCallBack(int x)

          B.int receive(int num)

          C.string receive(int x)

          D.不確定的

          13:class Class1

          {

          public static int Count = 0;

          static Class1()

          {

          Count++;

          }

          public Class1()

          {

          Count++;

          }

          }

          Class1 o1 = new Class1();

          Class1 o2 = new Class1();

          請問,Class1.Count的值是多少?

          A.1

          B.2

          C.3

          D.4

          14:public static void Main(string[] args)

          {

          int i = 2000;

          object o = i;

          i = 2001;

          int j =(int) o;

          Console.WriteLine("i={0},o={1}, j={2}",i,o,j);

          }

          A.i=2001,o=2000,j=2000

          B.i=2001,o=2001,,j=2001

          C.i=2000,o=2001,,j=2000

          D.i=2001,o=2000,j=2001

          15:假定a和b為int型變量,則執行下述語句組后,b的值為

          a=1;

          b=10;

          do

          {

          b-=a;

          a++;

          } while (b--<0);

          A.9

          B.-2

          C.-1

          D.8

          簡答題

          16:override與重載的區別。

          17:為什么不應該在.NET中使用out參數?它究竟好不好?

          18:雙向鏈表的刪除結點 。

          19:解釋HttpRequest.ValidateInput()的重要性?

          20:Solve this cryptic equation, realizing of course that values for M and E could be interchanged. No leading zeros are allowed.

          WWWDOT - GOOGLE = DOTCOM

          21:特性能夠放到某個方法的參數上?如果可以,這有什么用?

          22:PID是什么?在做系統的故障排除時如何使用它?

          23:比較兩個字符串,用O(n)時間和恒量空間。

          24:請詳述在dotnet中類(class)與結構(struct)的異同?

          25:簡述 private、 protected、 public、 internal 修飾符的訪問權限。

        【三泰電子系統分析師筆試題目】相關文章:

        三泰電子系統分析師筆試題06-14

        民泰銀行筆試題目09-29

        泰隆商業銀行筆試題目06-09

        泰康資產2009年筆試題目分享10-13

        剛參加完泰隆金華分行的筆試題目分享07-17

        筆試 泰科電子09-06

        2016阿里巴巴數據分析師職位筆試題目08-15

        阿里巴巴校招數據分析師筆試題目10-25

        三星筆試的感受,筆試題目分享07-28

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>