单项选择题 1. 下面的程序执行输出几个hello?
#include<stdio.h>
#include <unistd.h>
int main( ) {
fork( );
fork( );
fork( );
printf(“hello\n”);
return 0;
}
A.3 B.4
C.6
D.8
2. 进行数据库提交操作时使用事务(Transaction)是为了? A.提高效率
B.保证数据一致性
C.网络安全
D.归档数据文件
3. 当n=5时,下列函数的返回值是: int foo(int n){
if(n<2){
return n;
}
else
return 2*foo(n-1)+foo(n-2);
}
A.5
B.11
C.29
D.10
4. 假设一段公路上,1小时内有汽车经过的概率为96% ,那么,30分钟内有汽车经过的概率为? A.48%
B.52%
C.80%
D.96%
5. 一副扑克(52张,不含大小王),抽出两张牌,一红一黑 (不考虑先后顺序)的概率是多少? A.1/2
B.26/51
C.1/3
D.25/51
|