北京赞同2017校招java工程师笔试试卷
时长:120分钟 总分:100分
322浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 11 | 9 |
假定 x 和 y 为 double 型,则执行 x=2 ; y=x+3/2; 后y的值为()
假定 x 和 y 为 double 型,则执行 x=2 ; y=x+3/2; 后y的值为()
将整数数组( 7-6-3-5-4-1-2 )按照堆排序的方式进行升序排列,请问在第一轮排序结束之后,数组的顺序是()
将整数数组( 7-6-3-5-4-1-2 )按照堆排序的方式进行升序排列,请问在第一轮排序结束之后,数组的顺序是()
有以下程序段,则下面正确的选项是()
有以下程序段, 则下面正确的选项是()
public class MyThead extends Thread{ public static void main(String[] args) { MyThead t=new MyThead() MyThead s=new MyThead() t.start() System.out.println("one.") s.start() System.out.println("two.") } public void run() { System.out.println("Thread") } }
Choose the correct ones from the following statements:
Choose the correct ones from the following statements: