5329:[GESP202406三级] 客观题
文件提交:无需freopen
内存限制:128 MB
时间限制:1.000 S
评测方式:文本裁判
金币值:
命题人:
提交:5
解决:0
题目描述
**一.单选题(每题2分,共30分)**
1. 小杨父母带他到某培训机构给他报名参加 `CCF` 组织的 `GESP` 认证考试的第1级,那他可以选择的认证语言有几
种?( )。
- $1$
- $2$
- $3$
- $4$
2. 下面流程图在 `yr` 输入 $2024$ 时,可以判定 `yr` 代表闰年,并输出 $2$ 月是 $29$ 天 ,则图中菱形框中应该填入 ( )。

- `(yr%400==0) || (yr%4==0)`
- `(yr%400==0) || (yr%4==0 && yr%100!=0)`
- `(yr%400==0) && (yr%4==0)`
- `(yr%400==0) && (yr%4==0 && yr%100!=0)`
3. 一般默认 $64$ 位计算机系统中整型变量`(int)`还是 $32$ 位,则整数能够表示的数据范围是( )。
- $0~2^{32}$
- $0~2^{64}$
- $-2^{31}~(2^{31})-1$
- $-2^{63}~(2^{63})-1$
4. 下列代码将十进制转化成八进制,则横线上应填入 ( )。
```cpp
#include
using namespace std;
void decimal2octal(int decimal) {
int oct_number[100];
int i = 0;
while (decimal > 0) {
__________________________ //在此处填入代码
}
for (int j = i - 1; j >= 0; j--) {
cout << oct_number[j];
}
cout << endl;
}
```
- `oct_number[i] = decimal % 8; decimal /= 8;`
- `oct_number[i] = decimal / 8; decimal %/= 8;`
- `oct_number[i++] = decimal % 8; decimal /= 8;`
- `oct_number[i++] = decimal / 8; decimal %= 8;`
5. 二进制数 $101.11$ 对应的十进制数是( )。
- $6.5$
- $5.5$
- $5.75$
- $5.25$
6. 下列流程图的输出结果是( )。

- $5$
- $10$
- $20$
- $30$
7. 下列代码的输出结果是( )。
```cpp
#include
using namespace std;
int main() {
int a = 12;
int result = a >> 2;
cout << result << endl;
return 0;
}
```
- $12$
- $6$
- $3$
- $1$
8. 下列代码的输出结果是( )。
```cpp
#include
using namespace std;
int main() {
int a = 5;
int b = 10;
a = a ^ b;
b = a ^ b;
a = a ^ b;
cout << "a = " << a << ", b = " << b << endl;
return 0;
}
```
- `a = 5, b = 10`
- `a = 5, b = 5`
- `a = 10, b = 5`
- `a = 10, b = 10`
9. 如果字符串定义为 `char str[] = "GESP";` ,则字符数组 `str` 的长度为
- $0$
- $4$
- $5$
- $6$
10. 在下列代码的横线处填写( ),可以使得输出是`“7”`。
```cpp
#include
using namespace std;
int main() {
int array[5] = {3,7,5,2,4};
int max = 0;
for(int i=0; i<5; i++)
if(______________) // 在此处填入代码
max = array[i];
cout << max << endl;
return 0;
}
```
- `max > array[i]`
- `max < array[i]`
- `max = array[i]`
- `以上均不对`
11. 小杨在做数学题,题目要求找出从 $1$ 到 $35$ 中能被7整除的数字,即 `[7, 14, 21, 28, 35]` ,则横线处应填入哪个代码?( )。
```cpp
#include
using namespace std;
int main() {
int arr[35];
int count = 0;
for (int i = 1; i <= 35; i++) {
if (i % 7 == 0)
__________________________ // 在此处填入代码
}
for (int i = 0; i < count; i++)
cout << arr[i] << endl;
return 0;
}
```
- `arr[count++] = i;`
- `arr[i] = count++;`
- `arr[i] = count;`
- `arr[count] = count++;`
12. 已知字符 `'0' ` 的 `ASCII` 编码的十进制表示为 $48$ ,则执行下面C++代码后,输出是
```cpp
#include
using namespace std;
int main() {
string s = "0629";
int n = s.length();
int x = 0;
for(int i = 0; i < n; i++)
x += s[i];
cout << x << endl;
return 0;
}
```
- $17$
- $158$
- $209$
- $316$
13. 某小学男子篮球队招募新成员,要求加入球队的成员身高在 $135$ 厘米以上(不含 $135$ 厘米)。本次报名的人员有 $10$ 人,他们的身高分别是 `125、127、136、134、137、138、126、135、140、145` 。完善以下代码,求出本次球队能够招募到新成员的人数?
```cpp
#include
using namespace std;
int main() {
int arr[10] = {125, 127, 136, 134, 137, 138, 126, 135, 140, 145};
int count = 0;
for(int i=0; i<10; i++)
__________________________ // 在此处填入代码
cout << count << endl;
return 0;
}
```
- `count = arr[i]>135? 1: 0;`
- `count += arr[i]>135? 1: 0;`
- `count++;`
- 以上都不对
14. 下面可以正确输出 `They're planning a party for their friend's birthday.` 的C++语句是( )。
- `cout << 'They\'re planning a party for their friend'\s birthday." << endl;`
- `cout << "They\'re planning a party for their friend's birthday.'<< endl;`
- `cout << 'They're planning a party for their friend's birthday.'<< endl;`
- `cout << "They\'re planning a party for their friend\'s birthday." << endl;`
15. 如果执行下面C++代码后,输出的结果是 `“gesp ccf org cn ”` ,则横线上应填入哪个代码?
```cpp
#include
using namespace std;
int main() {
string str = "gesp.ccf.org.cn";
string delimiter = ".";
string result="";
string token;
size_t found = str.find(delimiter);
while (found != string::npos) {
token = str.substr(0, found);
result += token;
result += " ";
__________________________ // 在此处填入代码
found = str.find(delimiter);
}
//最后一部分
result += str;
result += " ";
cout << result << endl;
return 0;
}
```
- `str = str.substr(found + delimiter.length(), str.length() - 1);`
- `str = str.substr(found, str.length() );`
- `str = str.substr(found, str.length() -1);`
- `以上都不对`
**二.判断题(每题2分,共20分)**
16. GESP测试是对认证者的编程能力进行等级认证,同一级别的能力基本上与编程语言无关。
- 正确
- 错误
17. 整数 $-6$ 的 $16$ 位补码可用十六进制表示为 `FFFA` 。
- 正确
- 错误
18. 补码的优点是可以将减法运算转化为加法运算,从而简化计算机的硬件设计。
- 正确
- 错误
19. 字符常量`'\0'`常用来表示字符串结束,和字符常量`'0'`相同。
- 正确
- 错误
20. 数组的所有元素在内存中可以不连续存放。
- 正确
- 错误
21. C++中可以对数组和数组的每个基础类型的元素赋值。
- 正确
- 错误
22. 如果 为 `int` 类型的变量,且表达式` ((a | 3) == 3) `的值为 `true` ,则说明 在从 $0$ 到 $3$ 之间(可能为$0$ 、可能为 $3$ )
- 正确
- 错误
23. 执行下面C++代码后,输出的结果是 $8$ 。
```cpp
int a = 0b1010;
int b = 01100;
int c = a & b;
cout << c <
#include // 为了使用 rand() 和 srand()
#include // 为了使用 time()
using namespace std;
int main() {
// 设置随机种子
srand(time(NULL));
int i = 1;
int s[5];
while(i <= 5)
{
int a = rand() % 10;
if(a % 3 == (i + 1) % 3)
s[i++] = a;
}
for(int i = 1; i <= 5; i++)
cout << s[i];
cout << endl;
return 0;
}
```
- 正确
- 错误
25. 把整数 $3025$ 从中剪开分为 $30$ 和 $25$ 两个数,此时再将这两数之和平方,计算结果又等于原数。`(30 + 25) × (30 + 25) = 55 × 55 = 3025`,这样的数叫“雷劈数”。可以使用枚举的方法求出所有符合这样条件的四位数。
- 正确
- 错误