- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C++ Examination: Wednesday 1st December 2004
《C++语言程序设计考题》
(5 marks)
What is the binary value of the decimal 7? (10进制中的7表示为二进制,结果为多少)
What is the hexadecimal value of the decimal 16?(10进制中的16表示为16进制,结果为多少)
What is the binary valueas a decimal?(二进制应的十进制是多少)
What is the value of the binary sum 00101 + 00011?(两个二进制数00101 和 00011相加的结果是多少)(注意:结果用二进制表示)
What is the value of the hexadecimal multiplication 2 x 10?(十六进制数2和10相乘的结果是多少)(注意:结果用十六进制表示)
(5 marks)
Using the ASCII table below, what is the value of the hexadecimal sequence
“43 2B 2B 20 45 78 61 6D 21” ?
根据下面的ASCII码表,写出十六进制序列“43 2B 2B 20 45 78 61 6D 21”的结果
20
30
0
40
@
50
P
60
`
70
p
21
!
31
1
41
A
51
Q
61
a
71
q
22
32
2
42
B
52
R
62
b
72
r
23
#
33
3
43
C
53
S
63
c
73
s
24
$
34
4
44
D
54
T
64
d
74
t
25
%
35
5
45
E
55
U
65
e
75
u
26
36
6
46
F
56
V
66
f
76
v
27
37
7
47
G
57
W
67
g
77
w
28
(
38
8
48
H
58
X
68
h
78
x
29
)
39
9
49
I
59
Y
69
i
79
y
2A
*
3A
:
4A
J
5A
Z
6A
j
7A
z
2B
+
3B
;
4B
K
5B
[
6B
k
7B
{
2C
,
3C
4C
L
5C
\
6C
l
7C
|
2D
-
3D
=
4D
M
5D
]
6D
m
7D
}
2E
.
3E
4E
N
5E
^
6E
n
7E
~
2F
/
3F
?
4F
O
5F
_
6F
o
7F
(8 marks)
What is the output from each of the following four programs?
下面四个程序对应的输出分别是什么?
#include iostream
using namespace std;
void fn();
int main()
{
int a = 7;
fn();
cout a;
return 0;
}
void fn()
{
static int b = 8;
b++;
}
#include iostream
using namespace std;
void fn(int);
int main()
{
fn(8);
return 0;
}
void fn(int a)
{
cout a + 1 endl;
}
#include iostream
using namespace std;
void fn(int*);
int main()
{
int a = 7;
fn(a);
cout a endl;
return 0;
}
void fn(int *b)
{
(*b)++;
}
#include iostream
using namespace std;
int a;
void fn();
int main()
{
a = 7;
fn();
cout a endl;
return 0;
}
void fn()
{
a++;
}
(2 marks)
What value does the following program return to the operating system?
下面程序返回给操作系统的值是什么?
#include iostream
using namespace std;
int fn(int);
int main()
{
int x = fn(7);
return 0;
}
int fn(int a)
{
return a++;
}
(5 marks)
What code can be
文档评论(0)