一级毛片免费不卡在线视频,国产日批视频免费在线观看,菠萝菠萝蜜在线视频免费视频,欧美日韩亚洲无线码在线观看,久久精品这里精品,国产成人综合手机在线播放,色噜噜狠狠狠综合曰曰曰,琪琪视频

三泰電子系統(tǒng)分析師筆試題目

時(shí)間:2024-07-05 08:36:08 資料大全 我要投稿
  • 相關(guān)推薦

三泰電子系統(tǒng)分析師筆試題目

  選擇題

三泰電子系統(tǒng)分析師筆試題目

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

  A.Web窗體頁(yè)的程序的邏輯由代碼組成,這些代碼的創(chuàng)建用于與窗體交互,

三泰電子系統(tǒng)分析師筆試題目

。編程邏輯唯一與用戶界面不同的文件中。該文件稱作為“代碼隱藏”文件,如果用C#創(chuàng)建,該文件

  B.項(xiàng)目中所有Web窗體頁(yè)的代碼隱藏文件都被編譯成.EXE文件

  C.項(xiàng)目中所有的Web窗體頁(yè)的代碼隱藏文件都被編譯成項(xiàng)目動(dòng)態(tài)鏈接庫(kù)(.dll)文件

  D.以上都不正確

  2:在下述選項(xiàng)時(shí),沒(méi)有構(gòu)成死循環(huán)的程序是

  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:設(shè)有變量說(shuō)明語(yǔ)句int a=1,b=0;

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

  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.有語(yǔ)法錯(cuò)誤

  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();

  }

  }

  請(qǐng)問(wèn),此程序輸出結(jié)果是:

  A.BaseClass

  B.BassClass Class1

  C.Class1

  D.Class1 BassClass

  6:在C#中利用Socket進(jìn)行網(wǎng)絡(luò)通信編程的一般步驟是:建立Socket偵聽(tīng)、( )、利用Socket接收和發(fā)送數(shù)據(jù),

資料共享平臺(tái)

三泰電子系統(tǒng)分析師筆試題目》(http://www.oriental01.com)。

  A.建立Socket連接

  B.獲得端口號(hào)

  C.獲得IP地址

  D.獲得主機(jī)名

  7:

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

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

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

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

  ib=ia; /*第4行*/

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

  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:在軟件生命周期中,下列哪個(gè)說(shuō)法是不準(zhǔn)確的?

  A.軟件生命周期分為計(jì)劃、開(kāi)發(fā)和運(yùn)行三個(gè)階段

  B.在計(jì)劃階段要進(jìn)行問(wèn)題焉醛和需求分析

  C.在開(kāi)發(fā)后期要進(jìn)行編寫(xiě)代碼和軟件測(cè)試

  D.在運(yùn)行階段主要是進(jìn)行軟件維護(hù)

  12:聲明一個(gè)委托public delegate int myCallBack(int x); 則用該委托產(chǎn)生的回調(diào)方法的原型應(yīng)該是

  A.void myCallBack(int x)

  B.int receive(int num)

  C.string receive(int x)

  D.不確定的

【三泰電子系統(tǒng)分析師筆試題目】相關(guān)文章:

職場(chǎng)經(jīng)典筆試題目07-21

UBI 筆試題目05-19

APL筆試題目10-05

用友筆試題目08-15

SUN筆試題目09-05

吉利筆試題目08-23

經(jīng)歷的筆試題目07-23

EMC筆試題目精選08-15

IBM筆試題目10-20

有趣的微軟筆試題目08-05