使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
A.try
B.catch
C.Finally
D.throw
E.throws
A.IllegalArgumentException
B.ArithmeticException
C.NullPointerException
D.EOFException
(含图)
E.NumberFormatException
A.dd.get();
B.dd.contains();
C.dd.iterator();
D.dd.next();
A.ArrayList < nameList > dd;
B.Iterator < nameList > dd;
C.ArrayList < String > dd;
D.Iterator < String > dd;
未答复
A.继续
B.单步跳过
C.单步跳入
D.单步返回
A.存取受限的线性结构
B.存取不受限的线性结构
C.存取受限的非线性结构
D.存取不受限的非线性结构
A.不需要事先估计存储空间
B.可随机访问任一元素
C.插入删除时不须要移动元素
D.所需空间与线性表长度成正比
A.import java.awt;
B.import javax.awt;
C.import java.awt.*;
D.import javax.swing.*;
A.3
B.4
C.5
D.6
private int binarySearch(int []disp, int key){int low = 0;int high = disp.length-1;while(low <=high){int mid = (low + high)/2;if(key == disp[mid]) return mid + 1;if( A ){high = mid -1;}else {low = mid + 1;}}return -1;}
A.getActionCommand()
B.getSource()
C.getAction()
D.getCommand()
A.addListeners()
B.setActionListeners()
C.addActionListeners()
D.setListeners()
A.componentShown(ComponentEvent e) { }
B.componentHidden(ComponentEvent e) { }
C.componentResized(ComponentEvent e) { }
D.componentMoved(ComponentEvent e) { }
A.GridLayout
B.BoxLayout
C.BorderLayout
D.CardLayout