0 of 15 Questions completed
Questions:
Information
You have already completed the quiz before. Hence you can not start it again.
You must sign in or sign up to start the quiz.
You must first complete the following:
Quiz complete. Results are being recorded.
0 of 15 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
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
-
Current
-
Review
-
Answered
-
Correct
-
Incorrect
-
Question 1 of 15
-
Question 2 of 15
- 将十进制小数 9.375 转换为二进制小数,其正确的二进制表示是( )。
-
Question 3 of 15
- 假设有一个内存显示为 96MB 的文件夹,里面存储的都是分辨率为 1024 × 2048 的24 位图像,请问理论上存储了( )张图像?(不考虑图像技术压缩对内存的优化)
-
Question 4 of 15
- 有六个小朋友并排站一列,其中三个小朋友是三胞胎,如果要求这三个三胞胎必须相邻,则有( )种不同排列方法?
-
Question 5 of 15
- 在 C++中,关于函数参数传递的说法,哪一个是正确的( )?
-
Question 6 of 15
- 对于一个 8 位二进制整数,如果其原码是 10000011,则其补码是( )。
-
Question 7 of 15
- 用简单插入排序方法对下面四个序列进行排序(由小到大),元素比较次数最少的是( )。
-
-
-
-
-
Question 8 of 15
- 在 C++ 的 STL 中,如果你需要频繁地在序列的任意位置插入和删除元素,以下哪个容器将是最合适的选择( )?
-
Question 9 of 15
- 已知一棵二叉树的前序遍历结果为 ABCDEF,中序遍历结果为 CBAEDF,则后序遍历的结果为( )。
-
Question 10 of 15
-
Question 11 of 15
- 有以下代码段,执行改代码输出的结果为( )。
int a[3] = {1, 3, 5};
int *p = &a[0];
int *q = p + 2;
cout << *(p+1) << “ ” << *q;
-
Question 12 of 15
- 根据下面的流程图计算,若一开始输入的 m 与 n 的值分别为 10710 和 8208,则最后的输出是( )。
-
Question 13 of 15
13. 班级组织大家参加信息学比赛,现在要从班里选出3人组成一队进行报名,要求每个参赛队伍至少需要有一位女同学。已知班级里一共有15个男生,9个女生,则一共有( )种可能的组合。
-
Question 14 of 15
14. 一家电信公司提供了多种流量套餐供用户选择,每种套餐有不同的流量上限和价格,并可以重复购买。用户可以根据自己的需求购买套餐,超出套餐的流量将按照更高的单价计费。
假设有以下套餐和超出套餐的流量单价:
套餐A:2GB流量,价格3元
套餐B:5GB流量,价格7元
套餐C:10GB流量,价格13元
超出套餐流量单价:2元/GB
现有用户预计需要使用128GB的流量,则该用户最少需要付费( )元?
-
Question 15 of 15
15. 向一个栈顶指针为h的带头结点的链栈中插入指针p所指的结点,应执行( )。