单选题In Which phase of the software engineering process iS the Software Requirements Specification developed?
单选题下列选项中,不属于信息传输安全过程的安全威胁是
____
。
单选题无线网状网的英文缩写是
单选题0
下列命题为真的是
单选题Suppose elements in array A are already sorted ascending order of their values when the code begins to run, then execution time of the code will be
单选题关于IEEE 802.11标准的描述中,正确的是
单选题某计算机系统中共有3个进程P1、P2和P3,4类资源r1、r2、r3和r4。其中r1和r3每类资源只有1个,r2资源有2个,r4有3个。当前的资源分配状态如下:
单选题有如下C语言程序
void * th_f(void * arg)
{
printf("Hello World");
pthread_join(2);
}
int main(void)
{
pthread_t tid;
int st;
st=pthread_create(
if(st==0)
printf("Oops, I can not createthread\n");
exit(NULL):
}
针对上述程序,下列叙述中哪一个是正确的?
单选题According to Shannon's equation, what is the channel capacity of an analog voice-grade phone line with a bandwidth of 3100 Hz and a signal-to-noise ratio or 30 dB?
单选题有学生表(id,name,sex,age,depart_id,depart_name),存在函数依赖集{id→(name,sex,age,depart_id),Dept_jd→dept_name},其满足______。
单选题给定如下数据:
Ⅰ、商品销售数据
商品标识
价格
数量
金额
销售时间
1
50.00
5
100
2008/01/01 2:3010
2
3.00
2
6
2008/01/01 2:30:10
…
Ⅱ、关系模式信息
表名
属性名
类型
长度
…
商品表
商品标识
字符
10
…
商品表
商品名称
字符
50
…
…
Ⅲ、商品类别数据
商品类别标识
类型名称
商品大类标识
…
DA
电视
家电
…
DB
冰箱
家电
…
…
Ⅳ、权限信息
角色名/用户名
对象名
权限
R1
T1
SELECT
R2
T2
INSERT
…
Ⅴ、层间数据映射关系
属性名
源系统
源数据表
源字段
GoodsID
销售系统
Goods
GID
PIE
人力资源系统
Persons
PID
…
以上数据中,一般不属于元数据的是______。
单选题IP数据报的报文格式如下图所示。在没有选项和填充的情况下,报头长度域的值为
单选题The construct
cobegin
Statement1;
Statement2;
coend
means Statement1 and Statement2 are to be executed in parallel. The only two atomic actions in this construct are loading the value of a variable and storing into a variable. For the program segment
x:=0;
y:=0;
cobegin
begin
x:=1,
y:=y+x;
end;
begin
y:=2;
x:=x+3;
end
coend
Which of the following indicate(s) possible values for the variables when the segment finishes execution?
Ⅰ. x=1, y=2
Ⅱ. x=1, y=3
Ⅲ. x=4, y=6
单选题下面不属于单元测试分析对象的是______。
A.模块接口
B.独立路径
C.边界条件
D.全局数据结构
单选题计算机系和教务处要对某数据库进行访问,计算机系全体教师对此数据库中的全部数据具有查询权,教务处全体人员对此数据库中全部数据具有查询、插入、删除和修改权。在SQL Server 2000中,下列安全控制方法最合理的是______。
单选题数据库应用系统开发一般包括两个方面的内容,它们是( )。
单选题在下列描述中属于冯·诺依曼体系结构的特点是
Ⅰ.采用16进制计数
Ⅱ. 集中而顺序的控制
Ⅲ. 存储程序并且存储时不区别数据和指令
单选题一个进程可以包括多个线程,各线程
单选题Which values are not permitted to be part of the primary key? ( )
单选题数据库应用程序与数据的逻辑组织和数据的物理存储方式无关,表明了数据库的数据具有 ( )。