1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 無限增值系統應用開發工程師筆試題

        時間:2024-07-18 02:25:01 面試筆試 我要投稿
        • 相關推薦

        無限增值系統應用開發工程師筆試題

          選擇題

        無限增值系統應用開發工程師筆試題

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

          a.0

          b.1

          c.2

          d.3

          2:c語言的長整型數值在計算機中占用的字節個數是

          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;

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

          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:執行語句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語言中,有值函數的數據類型是指

          a.函數形式參數的數據類型

          b.函數返回值的數據類型

          c.調用該函數時的實參的數據類型

          d.任意指定的數據類型

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

          a.ch=″mba″;

          b.str=″mba″;

          c.strp=″mba″;

          d.*strp=″mba″;

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

          a.參加編譯,并會出現在目標程序中

          b.參加編譯,但不會出現在目標程序中

          c.不參加編譯,但會出現在目標程序中

          d.不參加編譯,也不會出現在目標程序中

          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 數組的首地址

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

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

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

          15:數據 - 324 在二進制文件和文本文件中所占的字節數分別是

          a.2 , 2

          b.2 , 4

          c.4 , 2

          d.4 , 4

          簡答題

          16:類的靜態成員和非靜態成員有何區別?

          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。請編寫代碼,統計出url中的文件名及出現次數。

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

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

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

          文件內容示例如下:

          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中包含的字符可以進行的所有不同組合。例如:abccd中,ab,ac,bc,cc,abd等都是可能的組合。

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

          提示:32bit整數分解為16bit相乘

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

        【無限增值系統應用開發工程師筆試題】相關文章:

        中國移動應用系統開發工程師筆試題目10-28

        泰道控制系統設備硬件開發工程師筆試題06-09

        應用系統類判斷筆試題分享10-17

        測試開發工程師筆試題09-25

        ios開發工程師筆試題及答案08-17

        系統開發工程師職業規劃09-11

        阿里2015開發工程師筆試題目10-15

        網易web開發工程師的筆試題分享08-31

        360前端開發工程師面試題09-02

        上海網絡系統工程師試題10-01

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>