- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
复旦计算机春季期末考试试题A
复旦大学计算机科学技术学院
《计算机原理》期末考试试卷
A卷 共 13页
课程代码:INFO130054.01-02 _ 考试形式:开卷 2010年6月
(本试卷答卷时间为100分钟,答案必须写在答卷上,做在试卷上无效)
专业 学号 姓名 成绩
题号 1 2 3 4 5 6 7 总分 得分
Number Conversion: IEEE 754 single precision 32-bit float standard representation with a little change is illustrated below.
Normalized: (-1)sign * (1.fraction) * 2exponent-127 (exp=1 to 254)
Denormalized: (-1)sign * (0.fraction) * 2-126 (when exp=0, fraction≠0)
Zero: all 0’s in all 3 fields
Convert the number -35.390625 into this changed IEEE 754 FP single precision representation (in hex).
(-35.390625)10 = (0x )16
With changed 32-bit float representation, what is the equivalent value as a decimal number?
A: (0011 1111 0001 0000 0000 0000 0000 0000)2
B: (0000 0000 0011 0101 0000 0000 0000 0000)2
Calculate the sum of (35.390625)10 and (0011 1111 0001 0000 0000 0000 0000 0000)2 using changed 32-bit float representation, and then round the sum (in binary number value, e.g. (1000.11)2 for (8.75)10 ) to 4 bits to the right of the binary point by both round-up and round-down. Give your steps detailed.
Given three numbers f1, f2 and f3 of this changed 32-bit representation, none of them equals +(, -( or NaN, and x is signed 32-complement representation. Please tell whether two C expressions below are always true. If yes, give the reason in detail; If no, give a counterexample and show the detail computation steps to get false.
A: x = = (int) (float) x;
B: (f1 f2) = = ((f1 + f3) (f2 + f3))
Please read the following C code and assembly code and then fill in the blanks.
#include stdio.h
int p[5][4] = {{43,56,78,69},{-7,89,7,23},{24,36,88,67},
{12,56,78,90},{62,93,-78,9}};
int main(void){
int result = cal(5,4);
printf(The result is %d\n, result);
}
int cal(int a, int b){
int i;
int result=0;
for ( i = 0; i b; i++) {
if (i a-1)
result -= i*p[i+1][i];
}
return result;
} The a
您可能关注的文档
最近下载
- 2009石油化工行业检修工程动工预算定额说明.docx
- YB∕T6294-2024 锌铝合金镀层弹簧钢丝(报批稿).pdf VIP
- TSGZ6001—2019特种设备作业人员考核规则正文.pdf VIP
- 新湘教版七年级数学上册全册导学案.pdf VIP
- 2025年内蒙古自治区呼和浩特市初一新生入学分班考试真题含答案.docx VIP
- 2025年西藏高考理综真题试卷及答案.docx VIP
- 部编人教版一年级数学上册全册教案.docx VIP
- 超市经营服务方案.docx VIP
- 腐蚀数据与选材手册-校对版.xls VIP
- 六年级下册语文试卷-《金色的鱼钩》一课一练(含答案)人教部编版.pdf VIP
文档评论(0)