【导读】
布丁学网发布计算机二级2022精选每日一练(11月06日),更多计算机二级的每日一练请访问布丁学网计算机类考试频道。
1. [单选题]在排序方法中,元素比较次数与元素的初始排列无关的是()
A. Shell排序
B. 归并排序
C. 直接插入排序(straight insertion)
D. 选择排序
2. [单选题]下列表单的哪个属性设置为真时,表单运行时(run-time)将自动居中( )。
A. AutoCenter
B. AlwaysOnTop
C. ShowCenter
D. FormCenter
3. [单选题]在C语言中,只有在使用时才占用内存单元的变量,其存储类型是( )。
A. auto和register
B. extern和register
C. auto和static
D. static和register
4. [单选题]执行下列程序时,会产生什么异常 public class Test { public static void main(String args[ ])( int d=101; int b=220; long a=321; System.out.println((a-B) /(a-b-D) ); } }
A. ArrayIndexOutOfBoundsException
B. NumberFormatException
C. ArithmetieException
D. EOFException