标签:应该 数据 end 系统 determine 括号 write img 分享
A.若t==0,则ZF=1
B.若t<0, 则CF=1
C.若t<0, 则SF=1
D.若(a<0==b<0)&&(t<0!=a<0),则OF=1
E.若(a<0==b<0)&&(t<0 != a<0), 则CF=1
F.leaq指令不影响条件码寄存器
G.cmp指令不影响条件码寄存器
原因:对于C选项,书本P136上写道,当t<0时SF置为1,因此C选项也是正确的。
( 多选题 | 1 分)
假设%rax中的值为x, %rcx中的值为y,关于leaq指令,下面正确的()
A.leaq 6(%rax), %rdx; %rdx中值为6+x
B.leaq 6(%rax), %rdx; %rdx中值为6x
C.leaq 7(%rax,%rax,8),%rdx;%rdx中值为9x
D.leaq 7(%rax,%rax,8),%rdx;%rdx中值为63x
E.leaq 7(%rax,%rax,8),%rdx;%rdx中值为15x
原因:对于C选项,leap 7(%rax,%rax,8),%rdx;%rdx中的值应该是9x+7。因为括号内的数字应该用乘法,括号外的数字应该用加法
( 多选题 | 1 分)
Y86-64中()指令没有访存操作.
A.rrmovl
B.irmovq
C.rmmovq
D.pushq
E.jXX
F.ret
原因:对于E选项,书本P270旁注部分对于jxx命令访存部分是空着的,因此jxx命令没有访存操作。
( 多选题 | 1 分)In this circuit, the 2-bit signal code would then control the selection among the four data words A, B, C, and D. We can express the generation of signals s1 and s0 using equality tests based on the possible values of code,which is true( )
A.bool s1 = code == 2 || code == 3;
B.bool s0 = code == 2 || code == 3;
C.bool s1 = code in { 2, 3 };
D.bool s1 = code in { 2, 3 };
原因:对于D选项,因CD选项一致,因此答案应是ACD
下面说法正确的是()
A.ALU是一种时序电路。
B.ALU是一种组合电路。
C.寄存器是一种时序电路
D.寄存器是一种组合电路
原因:对于D选项,寄存器应是一种时序电路。
( 多选题 | 1 分)
The following table gives the parameters for a number of different caches. For each cache, determine the number of cache sets (S), tag bits (t), set index bits (s),and block offset bits (b)
A.第三行S为1
B.第一行t为24
C.第二行b为5
D.第三行s的值为0
原因:对于C选项,b的值应为3。
(多选题|1分)有关磁盘操作,说法正确的是()
A.对磁盘扇区的访问时间包括三个部分中,传送时间最小。
B.磁盘以字节为单位读写数据
C.磁盘以扇区为单位读写数据
D.读写头总处于同一柱面
原因:对于D选项,书本P409磁盘操作的第一段最后一句写道:在任何时刻,所有的读/写头都位于同一个柱面上,因此D选项正确。
(多选题|1分)关于open(2),下面说法正确的是( )
A.flag 参数中O_RDONLY,O_WRONLY,O_RDWR至少要有一个
B.O_RDONLY|O_WRONLY == O_RDWR
C.fd=open("foo.txt",O_WRONLY|O_APPEND,0),调用write(fd,buff,n)写入foo.txt的数据不会破坏已有数据。
D.fd=open("foo.txt",O_WRONLY|O_APPEND,0644),必将导致其他人不能写foo.txt
2017-2018-1 《信息安全系统设计基础》课下测试错题汇总
标签:应该 数据 end 系统 determine 括号 write img 分享
原文地址:http://www.cnblogs.com/rafell/p/8007018.html