三泰電子系統(tǒng)分析師筆試題_第1頁(yè)
三泰電子系統(tǒng)分析師筆試題_第2頁(yè)
三泰電子系統(tǒng)分析師筆試題_第3頁(yè)
三泰電子系統(tǒng)分析師筆試題_第4頁(yè)
三泰電子系統(tǒng)分析師筆試題_第5頁(yè)
已閱讀5頁(yè),還剩12頁(yè)未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

三泰電子系統(tǒng)分析師筆試題 選擇題 1:關(guān)于asp.中的代碼隱藏文件的描述正確的是: a.web窗體頁(yè)的程序的邏輯由代碼組成,這些代碼的創(chuàng)建用于與窗體交互。編程邏輯唯一與用戶(hù)界面不同的文件中。該文件稱(chē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)的程序是 i=100 while (1) i=i%100+1; if (i100) break; b.for (;); k=1000; do +k; while(k=10000); 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.02 c.012 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ù)。 a.建立socket連接 b.獲得端口號(hào) c.獲得ip地址 d.獲得主機(jī)名 7: 下述程序代碼中有語(yǔ)法錯(cuò)誤的行是( )。 int i,ia10,ib10; /第一行/ for (i=0;i=9;i+) /第2行/ iai=0; /第3行/ ib=ia; /第4行/ 下述程序代碼中有語(yǔ)法錯(cuò)誤的行是( )。 int i,ia10,ib10; /第一行/ for (i=0;i=9;i+) /第2行/ iai=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. 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 int3new int35,6,2,new int56,9,7,8,3,new int23,2; myarray322的值是: 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) 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(); 請(qǐng)問(wèn),class1.count的值是多少? a.1 b.2 c.3 d.4 14:public static void main(string args) int i = 2000; object o = i; i = xx; int j =(int) o; console.writeline(i=0,o=1, j=2,i,o,j); a.i=xx,o=2000,j=2000 b.i=xx,o=xx,j=xx c.i=2000,o=xx,j=2000 d.i=xx,o=2000,j=xx 15:假定a和b為int型變量,則執(zhí)行下述語(yǔ)句組后,b的值為 a=1; b=10; do b-=a; a+; while (b0); a.9 b.-2 c.-1 d.8 簡(jiǎn)答題 16:override與重載的區(qū)別。 17:為什么不應(yīng)該在.中使用out參數(shù)?它究竟好不好? 18:雙向鏈表的刪除結(jié)點(diǎn) 。 19:解釋request.validateinput()的重要性? 20:solve this cryptic equation, realizing of course that values for m and e could be interchanged. no leading zeros are allowed. dot - google = dot 21:特性能夠放到某個(gè)方法的參數(shù)

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論