0 of 25 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 25 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
第 1 题 2024年10月8日,诺贝尔物理学奖“意外地”颁给了两位计算机科学家约翰·霍普菲尔德(John J. Hopfield)和杰弗·顿(Geoffrey E. Hinton)。这两位科学家的主要研究向是( )。
第 2 题 下列软件中是操作系统的是( )。
第 3 题 有关下列C++代码的说法,正确的是( )。
printf("Hello,GESP!");
第 4 题 C++表达式 12 – 3 * 2 && 2 的值是( )。
第 5 题 在C++中,假设N为正整数2,则 cout << (N / 3 + N % 3) 将输出( )。
第 6 题 C++语句 cout << 7%3 << ‘ ‘<< “7%3″<< ‘ ‘ << “7%3={7%3}” 执后的输出是( )。
第 7 题 下C++代码执后,求出天后星期。如果星期则输出“星期天”否则输出形如“星期1”。横线上应填 的代码是( )。
1 2 3 4 5 6 7 8 9 10 |
int N, nowDay, afterDays; cout << "今天星期几?" <<endl; cin >> nowDay; cout << "求几天后星期几?"<< endl; cin >>afterDays; N = nowDay+afterDays; if(_________________) printf("星期天"); else printf("星期%d", N%7); |
第 8 题 下C++代码执后输出是( )。
1 2 3 4 |
int N=0,i; for (i = 1; i < 10; i++) N += 1; cout << (N + i); |
第 9 题 下C++代码执后输出的是( )
1 2 3 4 |
int tnt = 0; for (i = 0; i < 100; i++) tnt += i % 10; cout << tnt; |
第 10 题 下C++代码执后输出的是( )
1 2 3 4 5 6 7 8 9 10 |
int N=0,i; int tnt = 0; for (i = 5; i < 100; i+=5){ if (i % 2 == 0) continue; tnt += 1; if (i >= 50) break; } cout << tnt; |
第 11 题 下的程序于判断输的整数N是否为能被3整除的偶数,横线处应填写代码是( )。
1 2 3 4 5 6 7 |
int N; cin >> N; if(___________________) cout << "能被3整除的偶数" << endl; else cout << "其他情形" << endl; cout << endl; |
第 12 题 下C++代码执后的输出是( )
1 2 3 4 5 6 |
int cnt; cnt = 0; for(int i = 1; i < 10; i++) cnt += i++; cout << cnt; cout << endl; |
第 13 题 int类型变量a的值是个正形的边长,如下图中的正形的四条边长都为4,则下列哪个语句执后能够 使得正形的周长(四条边长的和)增加4?( )。
+ + + + +
+ +
+ +
+ +
+ + + + +
第 14 题 C++表达式 (6 > 2) * 2 的值是( )。
第 15 题 下C++代码于判断输的整数是否为位增数,即从位到个位逐渐增,是则输出1。如123是个位增 数。下横线处应填的是( )。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
int N; int n1,n2; cin >> N; ______________________; while(N){ n1 = N % 10; if(n1 >= n2){ cout << 0; return 1; } n2 = n1, N /=10; } cout << 1; cout << endl; return 0; |
第 16 题 在Windows的资源管理器中为已有件A建副本的操作是 Ctrl+C ,然后 Ctrl+V 。( )
第 17 题 在C++中,表达式 8/3 和 8%3 的值相同。( )
第 18题 X是C++语的基本类型变量,则语句 cin>>X, cout <<X 能接收键盘输并原样输出。 ( )
第 4 题 下C++代码执后将输出10。( )
1 2 3 4 5 6 |
int N = 0; for (int i = 0; i < 10; i++){ continue; N += 1; } cout << N; |
第 20 题 下C++代码执后将输出100。( )
1 2 3 4 |
int i; for (i = 0; i <= 100; i++) continue; cout << i; |
第 21 题 下C++代码被执时,将执三次输出(即标记L2将被执次)。( )
for (int i = 0; i < 10; i+=3)
cout << i; //L2
第 22 题 C++语句 cout << (3,2) 执后,将输出3和2,且3和2之间有逗号间隔。(
第 23题 在C++代码中, studentName 、 student_name 以及 sStudentName 都是合法的变量名称。( )
第 24 题 在C++中,对浮点变量 float f ,则语句 cin >> f; cout << (f<1); 在输是 2e-1 时,输出是0。( )
第 25 题 在C++的循环体内部,如果 break 和 continue 语句连续在起,那么作抵消,可以顺利执下次循环。( )