- 相關推薦
三泰電子系統(tǒng)分析師筆試題
選擇題
1:關于asp.net中的代碼隱藏文件的描述正確的是:
a.web窗體頁的程序的邏輯由代碼組成,這些代碼的創(chuàng)建用于與窗體交互。編程邏輯唯一與用戶界面不同的文件中。該文件稱作為“代碼隱藏”文件,如果用c#創(chuàng)建,該文件
b.項目中所有web窗體頁的代碼隱藏文件都被編譯成.exe文件
c.項目中所有的web窗體頁的代碼隱藏文件都被編譯成項目動態(tài)鏈接庫(.dll)文件
d.以上都不正確
2:在下述選項時,沒有構成死循環(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:設有變量說明語句int a=1,b=0;
則執(zhí)行以下程序段的輸出結果為( )。
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接收和發(fā)送數(shù)據。
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.軟件生命周期分為計劃、開發(fā)和運行三個階段
b.在計劃階段要進行問題焉醛和需求分析
c.在開發(fā)后期要進行編寫代碼和軟件測試
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型變量,則執(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:為什么不應該在.net中使用out參數(shù)?它究竟好不好?
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:特性能夠放到某個方法的參數(shù)上?如果可以,這有什么用?
22:pid是什么?在做系統(tǒng)的故障排除時如何使用它?
23:比較兩個字符串,用o(n)時間和恒量空間。
24:請詳述在dotnet中類(class)與結構(struct)的異同?
25:簡述 private、 protected、 public、 internal 修飾符的訪問權限。
【三泰電子系統(tǒng)分析師筆試題】相關文章:
泰康資產2009年筆試題目分享10-13
泰鼎筆試題分享09-10
泰科流體筆試 筆經分享08-20
商業(yè)產品分析師筆試題10-25
泰科筆試題,經驗分享09-28
先鋒商泰 面試題06-17
中興2015筆試題08-22
360筆試題分享10-09
迅雷2011.10.21筆試題09-09
華為2015年筆試題06-30