亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

計算機等級 百分網(wǎng)手機站

計算機等級考試二級筆試卷含答案(3)

時間:2018-05-11 16:48:50 計算機等級 我要投稿

計算機等級考試二級筆試卷(含答案)

  main()

  { int i,j,k;

  i=10; j=15;

  k=10*MIN(i,j);

  printf("%d ",k);

  }

  A) 15 B) 100 C) 10 D) 150

  (47) 請選出以下程序段的輸出結(jié)果

  #include

  main()

  { char sl[10], s2[10], s3[10], s4[10];

  scanf("%s%s",s1,s2); gets(s3); gets(s4);

  puts(s1); puts(s2); puts(s3); puts(s4);

  }

  輸入數(shù)據(jù)如下:(此處代表回車符)

  aaaa bbbb

  cccc dddd

  A) aaaa B) aaaa C) aaaa D) aaaa bbbb

  bbbb bbbb bbbb cccc

  cccc cccc dddd dddd

  cccc dddd dddd eeee

  (48) 請選出以下程序的輸出結(jié)果

  #include

  fun(s, n1, n2)

  int *s, n1, n2;

  { int i, j, t;

  i=n1; j=n2;

  while(i

  { t= *(s+i); *(s+i)= *(s+j); *(s+j)=t;

  i++; j--;

  }

  }

  main()

  { int a[10]={1,2,3,4,5,6,7,8,9,0},i, *p=a;

  fun(p,0,3); fun(p,4,9); fun(p,0,9);

  for(i=0; i<10; i++) printf("%d", *(a+i));

  printf(" ");

  }

  A) 0 9 8 7 6 5 4 3 2 1 B) 4 3 2 1 0 9 8 7 6 5

  C) 5 6 7 8 9 0 1 2 3 4 D) 0 9 8 7 6 5 1 2 3 4

  (49) 請選出以下程序的輸出結(jié)果

  #include

  main()

  { int a[ ]={ 1,2,3,4 },i;

  int x=0;

  for(i=0; i<4; i++)

  { sub(a,x); printf("%d",x);}

  printf(" ");

  }

  sub(s,y)

  int *s, y;

  { static int t=3;

  y=s[t]; t--;

  }

  A) 1 2 3 4 B) 4 3 2 1 C) 0 0 0 0 D) 4 4 4 4

  (50) 下面程序的輸出結(jié)果為

  struct st

  { int x;

  int *y;

  } *p;

  int dt[4]={10,20,30,40};

  struct st aa[4]={ 50,&dt[0],60,&dt[1],

  70,&dt[2],80,&dt[3] };

  main()

  { p=aa;

  printf("%d ", ++p->x );

  printf("%d ", (++p)->x);

  printf("%d ", ++( *p->y));

  }

  A) 10 B) 50 C) 51 D) 60

  20 60 60 70

  20 21 21 31

  二、填空題(每空2分,共40分)

  請將每空的正確答案寫在答題卡上【1】-【20】序號的橫線上,答在試卷上不得分。

  (1) 十進制數(shù)123用八位二進制表示為 【1】 。

  (2) 70年代末開始出現(xiàn)16位微處理器,標志著微型計算機進入了第三代;80年代起使用 【2】 位微處理器,標志微型計算機進入了第四代。

  (3) 通用計算機操作系統(tǒng)的功能和任務(wù)是:作業(yè)管理、文件管理、外設(shè)管理、CPU管理和 【3】 管理。

  (4) PC-DOS的兩個隱含文件是:IBMBIO.COM(輸入輸出程序)與 【4】 (磁盤操作管理程序)。

  (5) FoxBASE和dBASE有兩種變量:即內(nèi)存變量和 【5】 變量 。

  (6) 設(shè)有如下程序段:

  int i=0, sum=1;

  do

  { sum+=i++;}

  while(i<6);

  printf("%d ", sum);

  上述程序段的輸出結(jié)果是 【6】 。

  (7) 閱讀下列程序:

  #include

  main()

  { int i, j, row, column,m;

  static int array[3][3]={{100,200,300},

  {28,72,-30},

  {-850,2,6}

  };

  m=array[0][0];

  for (i=0; i<3; i++)

  for (j=0; j<3; i++)

  if (array[i][j]

  { m=array[i][j]; row=i; column=j;}

  printf("%d,%d,%d ",m,row,column);

  }

  上述程序的輸出結(jié)果是 【7】 。

  (8) 設(shè)a、b、c為整型數(shù), 且a=2、b=3、c=4, 則執(zhí)行完以下語句:

  a*=16+(b++)-(++c);

  后,a的值是 【8】 。

  (9) 下面程序的輸出結(jié)果是 【9】 。

  #include

  main()

  { int a=3, b=2, c=1;

  c-=++b;

  b*=a+c;

  { int b=5, c=12;

  c/=b*2;

  a-=c;

  printf( '%d,%d,%d,",a,b,c);

  a+=--c;

  }

  printf( '%d,%d,%d,",a,b,c);

  }

  (10) 設(shè)有如下程序:

  #include

  main(argc,argv)

  int argc; char *argv[ ];

  { while( --argc>0) printf("%s",argv[argc]);

  printf(" ");

  }

  假定上述程序經(jīng)編譯和連接后生成可執(zhí)行文件PROG.EXE,如果在DOS提示符下鍵入PROG ABCD EFGH IJKL ,則輸出結(jié)果為 【10】 。

  (11) 閱讀下列程序:

  #include

  #define MAX_COUNT 4

  void fun();

  main()

  { int count;

  for (count=1; count<=MAX_COUNT; count++) fun();