<dfn id="w48us"></dfn><ul id="w48us"></ul>
  • <ul id="w48us"></ul>
  • <del id="w48us"></del>
    <ul id="w48us"></ul>
  • 三泰電子系統(tǒng)分析師筆試題

    時(shí)間:2024-06-14 16:52:41 面試筆試 我要投稿
    • 相關(guān)推薦

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

      選擇題

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

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

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

      b.項(xiàng)目中所有web窗體頁的代碼隱藏文件都被編譯成.exe文件

      c.項(xiàng)目中所有的web窗體頁的代碼隱藏文件都被編譯成項(xiàng)目動態(tài)鏈接庫(.dll)文件

      d.以上都不正確

      2:在下述選項(xiàng)時(shí),沒有構(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è)有變量說明語句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.有語法錯(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();

      }

      }

      請問,此程序輸出結(jié)果是:

      a.baseclass

      b.bassclass class1

      c.class1

      d.class1 bassclass

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

      a.建立socket連接

      b.獲得端口號

      c.獲得ip地址

      d.獲得主機(jī)名

      7:

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

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

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

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

      ib=ia; /*第4行*/

      下述程序代碼中有語法錯(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è)說法是不準(zhǔn)確的?

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

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

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

      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.不確定的

      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型變量,則執(zhí)行下述語句組后,b的值為

      a=1;

      b=10;

      do

      {

      b-=a;

      a++;

      } while (b—<0);

      a.9

      b.-2

      c.-1

      d.8

      簡答題

      16:override與重載的區(qū)別。

      17:為什么不應(yīng)該在.net中使用out參數(shù)?它究竟好不好?

      18:雙向鏈表的刪除結(jié)點(diǎn) 。

      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:特性能夠放到某個(gè)方法的參數(shù)上?如果可以,這有什么用?

      22:pid是什么?在做系統(tǒng)的故障排除時(shí)如何使用它?

      23:比較兩個(gè)字符串,用o(n)時(shí)間和恒量空間。

      24:請?jiān)斒鲈赿otnet中類(class)與結(jié)構(gòu)(struct)的異同?

      25:簡述 private、 protected、 public、 internal 修飾符的訪問權(quán)限。

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

    泰康資產(chǎn)2009年筆試題目分享10-13

    泰鼎筆試題分享09-10

    泰科流體筆試 筆經(jīng)分享08-20

    商業(yè)產(chǎn)品分析師筆試題10-25

    泰科筆試題,經(jīng)驗(yàn)分享09-28

    先鋒商泰 面試題06-17

    中興2015筆試題08-22

    360筆試題分享10-09

    迅雷2011.10.21筆試題09-09

    華為2015年筆試題06-30

    主站蜘蛛池模板: 岛国精品一区免费视频在线观看| 亚洲精品乱码久久久久66| 久久乐国产精品亚洲综合| 国产精品无套内射迪丽热巴| 黑人巨大精品欧美一区二区| 999久久久无码国产精品| 青草青草久热精品视频在线观看| 国产精品久久久久久福利漫画 | 久久精品视频免费| 区亚洲欧美一级久久精品亚洲精品成人网久久久久 | 伊人久久大香线蕉精品不卡| 99亚洲精品视频| 国产精品v欧美精品v日韩精品 | 91精品视频在线| 国产午夜精品免费一区二区三区| 欧美精品福利在线视频| 亚洲精品视频在线| 成人区人妻精品一区二区不卡视频| 亚洲爆乳无码精品AAA片蜜桃| 99久久精品国产一区二区蜜芽| 国产精品美脚玉足脚交欧美| 中文字幕精品一区二区精品| 久久精品国产72国产精福利| 国产精品 91 第一页| 久久精品免费观看| 国产精品久久毛片完整版| 精品成在人线AV无码免费看| 无码人妻精品一区二区三区99仓本 | 亚洲精品tv久久久久久久久久| 亚洲精品无码不卡| 91精品国产综合久久久久久| 无码囯产精品一区二区免费| 亚洲精品成人a在线观看| 久热这里只有精品99国产6| 国产精品美女WWW爽爽爽视频| 日本精品一区二区三区在线观看| 国产精品麻豆高清在线观看| 国产精品久久久久9999| 国产精品电影在线观看| 国产a∨精品一区二区三区不卡| 婷婷五月深深久久精品|