亚洲国产日韩欧美在线a乱码,国产精品路线1路线2路线,亚洲视频一区,精品国产自,www狠狠,国产情侣激情在线视频免费看,亚洲成年网站在线观看

無限增值系統(tǒng)應用開發(fā)工程師筆試題

時間:2021-02-10 15:12:13 面試筆試 我要投稿

無限增值系統(tǒng)應用開發(fā)工程師筆試題

  選擇題

無限增值系統(tǒng)應用開發(fā)工程師筆試題

  1:設int型變量x有初始值3,則表達式x++*5/10的值是

  a.0

  b.1

  c.2

  d.3

  2:c語言的長整型數(shù)值在計算機中占用的字節(jié)個數(shù)是

  a.1

  b.2

  c.3

  d.4

  3:main()

  { int x,y;

  x=y=1;

  y=++x;

  printf( ″ %d,%d ″ ,x,y);

  }

  程序運行結果為

  a.2,2

  b.1,2

  c.2,1

  d.1,1

  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:c 語句“ x*=y+2 ;”還可以寫作

  a.x=x*y+2;

  b.x=2+y*x;

  c.x=x*(y+2);

  d.x=y+2*x;

  6:設 int m1=5,m2=3;表達式m1>m2?m1=1:m2=-1運算后,m1和m2的值分別是

  a.1和-1

  b.1和3

  c.5和-1

  d.5和3

  7:執(zhí)行語句for(i=1;i++<4);后i的值是

  a.3

  b.4

  c.5

  d.不確定

  8:設enum color {purple, black, red, white} d;, 若將d賦值為枚舉常量red,則正確的是

  a.d=(enum color)2;

  b.d=(enum color)3;

  c.d=″red″;

  d.d=color;

  9:在c語言中,有值函數(shù)的數(shù)據(jù)類型是指

  a.函數(shù)形式參數(shù)的數(shù)據(jù)類型

  b.函數(shù)返回值的數(shù)據(jù)類型

  c.調(diào)用該函數(shù)時的實參的數(shù)據(jù)類型

  d.任意指定的數(shù)據(jù)類型

  10:設char ch,str[4],*strp;,則正確的賦值語句是

  a.ch=″mba″;

  b.str=″mba″;

  c.strp=″mba″;

  d.*strp=″mba″;

  11:c語言程序編譯時,程序中的注釋部分

  a.參加編譯,并會出現(xiàn)在目標程序中

  b.參加編譯,但不會出現(xiàn)在目標程序中

  c.不參加編譯,但會出現(xiàn)在目標程序中

  d.不參加編譯,也不會出現(xiàn)在目標程序中

  12:下列標識符中,不是c語言保留字的是

  a.char

  b.while

  c.min

  d.default

  13:不正確的標識符是

  a._a2

  b.2ai

  c.a2_i

  d.int

  14:對語句“ int a [ 10 ] ,*p=a; ”,下列表述中哪一個是正確的

  a.*p 被賦初值為 a 數(shù)組的首地址

  b.*p 被賦初值為數(shù)組元素 a [ 0 ]的地址

  c.p 被賦初值為數(shù)組元素 a [ 1 ]的地址

  d.p 被賦初值為數(shù)組元素 a [ 0 ]的地址

  15:數(shù)據(jù) - 324 在二進制文件和文本文件中所占的字節(jié)數(shù)分別是

  a.2 , 2

  b.2 , 4

  c.4 , 2

  d.4 , 4

  簡答題

  16:類的.靜態(tài)成員和非靜態(tài)成員有何區(qū)別?

  17:consider the following code:

  #include

  #include

  int main(int argc, char *argv[]) {

  int i = 1;

  char buf[4];

  strcpy(buf, "aaaa");

  printf("%d ", i);

  return 0;

  }

  a) when compiled and executed on x86, why does this program usually not output what the programmer intended?

  b) name several ways in which the security problem that causes this program not to output what the programmer intended can be prevented without changing the code.

  18:#include

  void main()

  { int a[5] ={2,4,6,9,12},b[6] ={2,3,4,6,8,9};

  for(int i=0;i<5;i++)

  for(int j=0;j<6;j++)

  if(*(a+i)*(b+j) printf( ″ %d ″ ,*(a+i));

  printf( ″ n ″ );

  } 輸出結果: _______

  19:write a function escape(s,t) that converts characters like newline and tab into visible escape sequences like and as it copies the string t to s . use a switch . write a function for the other direction as well, converting escape sequences into the real characters.

  20:一個文本文件有多行,每行為一個url。請編寫代碼,統(tǒng)計出url中的文件名及出現(xiàn)次數(shù)。

  a) 文件名不包括域名、路徑和url參數(shù),例如http://www.ourday.cn/bbs/forumdisplay.php?fid=18中的文件名是forumdisplay。

  b) 部分url可能沒有文件名,例如http://www.ourday.cn/,這類統(tǒng)計為“空文件名”。

  c) 出現(xiàn)在不同url中的相同文件名視為同一文件名,例如http://www.ourday.cn/index.php和ftp://ftp.ourday.cn/index.php為同一文件名

  文件內(nèi)容示例如下:

  http://www.ourday.cn/bbs/redirect.php?tid=480&goto=lastpost#lastpost

  http://www.ourday.cn/index.php

  ftp://ftp.ourday.cn/index.php

  http://www.ourday.cn/bbs/index.php?k=8

  http://www.ourday.cn/bbs/forumdisplay.php?fid=16

  http://www.ourday.cn/bbs/viewthread.php?tid=444&extra=page%3d1

  http://www.ourday.cn/

  http://www.ourday.com.cn/

  21:兩種不同的方法計算unsigned x有多少1 bits,如x=3,為0000 0011,有2個1

  22:閱讀下列程序段,簡述其主要功能。

  #include

  void main()

  {

  file*fpd1, *fpd2;

  char ch;

  fpd1=fopen(“d1.dat”,“r”) ;

  fpd2=fopen(“d2.dat”,“w”) ;

  while(fscanf(fpd1,“%c”,&ch)!=eof)

  if (ch>=''a''&& ch <=''z'' ‖ ch>=''a''&& ch<=''z'')

  fprintf(fpd2,“%c”,ch);

  fclose(fpd1);

  fclose(fpd);

  }

  23:apartment在com中有什么用?為什么要引入?

  24:找出字符串a(chǎn)中包含的字符可以進行的所有不同組合。例如:abccd中,ab,ac,bc,cc,abd等都是可能的組合。

  25:無符號整數(shù)乘法,乘數(shù)為32bit,結果為64bit

  提示:32bit整數(shù)分解為16bit相乘

  void multiply( dword dwfirst, dword dwsecond, dword& dwhigh, dword& dwlower );

【無限增值系統(tǒng)應用開發(fā)工程師筆試題】相關文章:

工程師面試筆試題03-19

網(wǎng)絡工程師面試筆試題03-09

華為數(shù)據(jù)通信工程師面試筆試題03-11

2017筆試各題型答題技巧02-11

給學弟學妹的求職筆面試總結03-18

2017筆試必備:進出口銀行常識匯總04-01

淺談基于就業(yè)導向的課程開發(fā)與建設03-10

應用化學專業(yè)就業(yè)前景07-09

面試筆試題03-22

餐飲服務培訓試題03-09