首页 > 软考
题目内容 (请给出正确答案)
[主观题]

● 以下关于CISC(Complex Instruction Set Computer,复杂指令集计算机)和RISC(Reduced Instructio

● 以下关于CISC(Complex Instruction Set Computer,复杂指令集计算机)和RISC

(Reduced Instruction Set Computer,精简指令集计算机)的叙述中,错误的是 (2) 。

(2)A. 在CISC中,其复杂指令都采用硬布线逻辑来执行

B. 采用CISC技术的CPU,其芯片设计复杂度更高

C. 在RISC中,更适合采用硬布线逻辑执行指令

D. 采用RISC技术,指令系统中的指令种类和寻址方式更少

查看答案
答案
收藏
如果结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能还需要:
您的账号:
发送账号密码至手机
发送
安装优题宝APP,拍照搜题省时又省心!
更多“● 以下关于CISC(Complex Instruction…”相关的问题
第1题
试题(15)以下关于复杂指令集计算机(Complex Instruction Set Computer,CISC)弊端的叙述中,错误

试题(15)

以下关于复杂指令集计算机(Complex Instruction Set Computer,CISC)弊端的叙述

中,错误的是 (15) 。

(15)A。指令集过分庞杂

B.每条复杂指令需要占用过多的CPU周期

C.CPU中的寄存器过多,利用率低

D.强调数据控制,导致设计复杂,研制周期长

点击查看答案
第2题
● 以下关于 CISC(Complex Instruction Set Computer,复杂指令集计算机)和RISC(Reduced Instructi

● 以下关于 CISC(Complex Instruction Set Computer,复杂指令集计算机)和RISC

(Reduced Instruction Set Computer,精简指令集计算机)的叙述中,错误的是 (2) 。

A. 在CISC 中,其复杂指令都采用硬布线逻辑来执行

B. 采用CISC 技术的CPU,其芯片设计复杂度更高

C. 在RISC 中,更适合采用硬布线逻辑执行指令

D. 采用RISC 技术,指令系统中的指令种类和寻址方式更少

点击查看答案
第3题
以下关于CISC(Complex Instruction Set Computer,复杂指令集计算机)和RISC(Reduced Instruction

以下关于CISC(Complex Instruction Set Computer,复杂指令集计算机)和RISC(Reduced Instruction Set Computer,精简指令集计算机)的叙述中,错误的是()。

A.在CISC中,其复杂指令都采用硬布线逻辑来执行

B.采用CISC技术的CPU,其芯片设计复杂度更高

C.在RIsc中,更适合采用硬布线逻辑执行指令

D.采用RISC技术,指令系统中的指令种类和寻址方式更少

点击查看答案
第4题
以下关于复杂指令集计算机(Complex Instruction Set Computer,CISC) 的叙述中,正确的是()。 A.

以下关于复杂指令集计算机(Complex Instruction Set Computer,CISC) 的叙述中,正确的是()。

A.只设置使用频度高的一些简单指令,不同指令执行时间差别很小B.CPU 中设置大量寄存器,利用率低C.常采用执行速度更快的组合逻辑实现控制器D.指令长度不固定,指令格式和寻址方式多

点击查看答案
第5题
In recent years, one of the more popular topics for panel discussions at computer conferen
ces and trade(61)has been the "RISC versus CISC" debate.RISC processors feature a small number of instructions that each executes in(62)machine cycle. CISC processors use complex instructions that can take several cycles to execute.The RISC versus CISC debate won't be decided by panel discussion; it will be won in the marketplace. And the deciding factor may have little to do with(63)of instructions and registers and more to do with parallelism.Since their conception, RISC processors have been evolving toward micro parallelism, incorporating parallel-processing features(64)the processor, RISC processors feature pipelining, whereby many instructions can be decoded while one instruction executes. RISC processors, however, are moving toward pipelines for each unit of the processor.CISC processors also employ pipelining. They have many integer instructions that execute in one cycle, but the varying execution times of CISC instructions(65)the effectiveness of parallelism.

A.shows

B.two

C.numbers

D.between

E.limit

点击查看答案
第6题
下列关于服务器的描述中,错误的是()。A.服务器的处理能力强、存储容量大、I/O速度快B.刀片服务器的

下列关于服务器的描述中,错误的是()。

A.服务器的处理能力强、存储容量大、I/O速度快

B.刀片服务器的每个刀片都是一个客户端

C.服务器按体系结构分为RISC、CISC和VLIW

D.企业级服务器是高端服务器

点击查看答案
第7题
有以下程序:#include<iostream>using namespace std;class Complex{public:Complex(dOuble r=0,d

有以下程序: #include<iostream> using namespace std; class Complex { public: Complex(dOuble r=0,dOuble i=0):re(r),im(i){} doublereal()const{return re;} doubleimag()const{return im;} Complex operator+(Complex c)const {return Complex

A.6+6i

B.6+1i

C.1+6i

D.1+1i

点击查看答案
第8题
有以下程序; #include<iostream> usingnamespacestd; classComplex { public: Complex(

有以下程序; #include<iostream> usingnamespacestd; classComplex { public: Complex(doubler=0,doublei=O):re(r),im(i){} doublereal()const{returnre;} doubleimag()const{returnim;} Complexoperator+(Complexc)const {returnComplex(re+C.re,im+C.im);} private: doublere,im; }; intmain() { Complexa=Complex(1,1)+Complex(5); cout<<a.real()<<+<<a.imag()<<i<<endl; return0; } 程序执行后的输出结果是()。

A.6+6i

B.6+1i

C.1+6i

D.1+1i

点击查看答案
第9题
有以下程序#include <iostream>using namespace std;class Complex{public:Complex(double r=0,d

有以下程序#include <iostream>using namespace std;class Complex{public: Complex(double r=0,double i=0):re(r),im(i){ double real() const {return re;} double imag() const { return im; } Complex operator+(Complex c) const {return Complex(re+c.re,im+c.im);}private: double re,im;};int main(){ Complex a =Complex(1,1)+ Complex(5); cout<<a.real()<<'+'<<a.imag()<<'i'<<end1; retura 0;}

A.6+6i

B.6+1i

C.1+6i

D.1+1i

点击查看答案
第10题
有以下程序; #include<iostream>usingnamespacestd; classComplex{public: Complex(double

有以下程序;

#include<iostream>

usingnamespacestd;

classComplex

{

public:

Complex(doubler=0,doublei=O):re(r),im(i){}

doublereal()const{returnre;}

doubleimag()const{returnim;}

Complexoperator+(Complexc)const

{returnComplex(re+C.re,im+C.im);}

private:

doublere,im;

};

intmain()

{

Complexa=Complex(1,1)+Complex(5);

cout<<a.real()<<'+'<<a.imag()<<'i'<<endl;

return0;

}

程序执行后的输出结果是()。

A.6+6i

B.6+1i

C.1+6i

D.1+1i

点击查看答案
退出 登录/注册
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改