1、好文档当选:http:/ (0.1 元/篇) 造纸,印染染料请选择 宏浩染料推荐JAVA 试题 1Java 语言程序设计一、选择题()Java 语言具有许多优点和特点,下列选项中,哪个反映了 Java 程序并行机制的特点? A)安全性 B)多线性 C)跨平台 D)可移植 ()下列哪个类声明是正确的? A)abstract final class HI? B)abstract private move()? C)protected private number; D)public abstract class Car? ()下列关于 for 循环和 while 循环的说法中哪个是正确的? A)
2、while 循环能实现的操作,for 循环也都能实现 B)while 循环判断条件一般是程序结果,for 循环判断条件一般是非程序结果 C)两种循环任何时候都可替换 D)两种循环结构中都必须有循环体,循环体不能为空 ()异常包含下列那些内容? A)程序中的语法错误 B)程序的编译错误 C)程序执行过程中遇到的事先没有预料到的情况 D)程序事先定义好的可能出现的意外情况 ()Character 流与 Byte 流的区别是 A)每次读入的字节数不同 B)前者带有缓冲,后者没有 C)前者是块读写,后者是字节读写 D)二者没有区别,可以互换使用 ()监听事件和处理事件 A)都由 Listener 完成
3、 B)都由相应事件 Listener 处登记过的构件完成 C)由 Listener 和构件分别完成 D)由 Listener 和窗口分别完成 ()Applet 可以做下列那些操作? A)读取客户端文件 B)在客户端主机上创建新文件 C)在客户端装载程序库 D)读取客户端部分系统变量 ()下列哪个属于容器的构件? A)JFrame B)JButton C)JPnel D)JApplet (9)如果希望所有的控件在界面上均匀排列,应使 用下列那种布局管理器? A)BoxLayout B)GridLayout C)BorderLayout D)FlowLouLayout 好文档当选:http:/ (
4、0.1 元/篇) 造纸,印染染料请选择 宏浩染料推荐(10)为实现多线程之间的通信,需要使用下列那种流才合适? A)Filter stream B)File stream C)Random access stream D)Pipde stream二、填空题()对象串行化可以很容易地扩展成支持 Java 对象的 ,它提供了对象从流中重建的补充方式.()Vector 类的对象是通过 capacity 和 capacityIncrement 两个值来改变集合的容量,其中 capacity 表示集合最多能容纳的2 ,capacityIncrement表示每次增加多少容量,不是一个一个增加.(3)下列
5、程序的功能是判断某一年是否为闰年.请在横线处填入适当内容,使程序能够正确运行. import java.io.*; public class LeapYear public static void main(String arge)throws IOException InputStreamReader ir; BufferdeReadwe in; ir=new InputStreamReader(System.in); in=new BufferedReader(ir); System.out.println(“输入年份是:”); String s= 3 ; int year=Integer
6、.parseInt(s); if year % 4 = = 0 else System.out.println(“+year+“年不是闰年“); (4)下面程序对数组中每个元素赋值,然后按逆序输出.请在横线处填入适当内容,使程序能正常运行. import java.io.*; public class ArrayTest public static void main(String args) int i; int a = new int5; for(i=0;i=0;i- -) System.out.println(“a“+i+“=“ai); (5) 下列程序的功能是:输入一个姓名,程序运行后
7、,输出“姓名 Welcome you!”.例如,输入“张三 Welcome you !”.请在下面横线处填入正确的方法名,使程序可以正确运行. import java,awt,*; import java.awt.event.*; public class welcomenYou public static void main(String args) new FrameInOut(); class FrameInOut extends Frame implements ActionListener Label prompt; TextField input,output; Button bt
8、nn; void FramInOut() prompt=new Label(“Please input y our name“); input=new TextField(10); output=new TextField(25); btnn=new Button(“Class“); 5 (new FlowLayout(); add(prompt); add(input); add(output); add(btnn); input.addActionListener(this); btnn.addActionListener(this); setSize(300.200); show();
9、public void actionperformed(ActionEvent e) if(e.getSource() = = input) output.setText(input.getText()+“Welcome you!“); else 好文档当选:http:/ (0.1 元/篇) 造纸,印染染料请选择 宏浩染料推荐 dispose(); system.exit(0); 三、上机操作题.下列程序中,指定变量 b=50 为字节类型,变量 f=0.55F 为单精度实型,变量 1=0xfffL 为位整型,并将该三个变量打印输出.请将程序补充完整.import java.io.*;publ
10、ic class Assignpublic static void main(String args)_b=50;_f=0.55F;_l=0xfffL;System.out.println(“b=“+b);System.out.println(“f=“+f);System.out.println(“l=“+l);2 请完成下列 Java 程序:用位于 JFrame 窗口下方的 Open 按钮,打开一个文件对话框,检索.gif 或者.png 图形文件,并在窗口中央将图象显示出来.(提示:将图象文件嵌入图象标内,再将图像图标置于标签中)注意:请勿改动 main 主方法和其他已有语句内容,仅在下划线
11、处填入适当的语句.import java.awt.*;import jova.awt.event.*;import java.io.*;import javax.swing.*;public class ImageViewer public stratic void main(Stringargs) JFrame frame=new ImageViewer Frame();frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);frame.show();class ImgeViewerFrame extends JFrame public Im
12、ageViewerFrame() setTitle(“ImageViewer“);setSize(DEFAULT_WIDTH,DEFAULT_HEIGTH);好文档当选:http:/ (0.1 元/篇) 造纸,印染染料请选择 宏浩染料推荐label = new JLAbel();Container contentpane = getContentpane();contentpane.add(label.BorderLayout.CENTER);chooser = new JFileChooser();chooser.setCurrentDirectory(new File(“.“);Butt
13、on button = new Button(“open“);contentpane.add(button,BorderLa yout.SOUTH);button.addActionListener(newActionListener() public void actionperformed(ActionEvent evt) int r = chooser.showOpenDialog(null);if(r = = JFilechooser.APPROVE_OPTLON) String name=_);private JLabel label;private JFileChooser cho
14、oser;private static final int DEFAULT_WIDTH = 300;private static final int DEFAULT_HEIGHT = 400;3.下面是一个 Applet 程序,其功能是接收用户输入的两个整数,比较它们的大小,并在用户按下“比较”按钮后,将 Applet 中显示的“请先输入两个待比较的整数”,改为“两个整数中最大值是:x”,x 是两个数中的最大值.请改正程序中的错误(有下划线的语句),使程序能输出正确的结果.注意:不改动程序的结构,不得增行或删行.import java.applet.*;import java.awt.*;im
15、port java.awr.event.*;public class FindMax extends Applet implements ActionListenerLabel result;TextField in1,in2;Button btn;int a=0,b=0,max;public void init()result = new Label“请先输入两个待比较的整数“);in1=new TextField(5);好文档当选:http:/ (0.1 元/篇) 造纸,印染染料请选择 宏浩染料推荐in2=new TextField(5);btn=new Button(“比较“);add
16、(in1);add(in2);add(btn);add(result);btn.addActionListener(this);public void actionperformed(ActionEvent e)a=in1;n=in2;if(ab)max=a;elsemax=b;btn.setText(“两个数中最大值是:“+max);好文档当选:http:/ (0.1 元/篇) 造纸,印染染料请选择 宏浩染料推荐参考答案Java 程序设计一:选择题:1-5 :B D D C C6-10:B A A B D二:填空题:(1)1:持续存储或持久存储(2)2:元素个数(3)3:in.readLi
17、ne()(4)4:i=a.Length-1 (5)5:setLayout以下内容请使用前删除,谢谢.Product Name: Chrysophenine GxHS Code:32041400Color Index: C.I.Direct Yellow 12CAS No.: 2870-32-8Molecular Formula: C30H26N4Na2O8S2Other Names:C.I.Direct Yellow 12(24895); Benzol Yellow LG; Chloraxol Yellow CG; ChrysopheninNS; Diphenyl Yellow CH; Nyl
18、ornine Yellow C-4R; Pyrazol YellowPaper Yellow DyesClassification of Chrysophenine Gx(1)DY-12 101# 105%(2)DY-12 140# 100%(3)DY-12 142# 100% (Fluffy Powder)Product Specification:Appearance: Saffron Even PowderStrength: 100% Shade Tone: Approximately to the standard.Moisture %: 5.0 MaxInsoluble Substa
19、nce in Water %:1.0 MaxDegree of Fineness (80 Mesh) % : 5.0 Max (Note: The Fineness is detected by the content of the screenings by 80 Mesh Sieve)好文档当选:http:/ (0.1 元/篇) 造纸,印染染料请选择 宏浩染料推荐Packages: 25kg or 40kg Iron Drum/ Fibre Drum/Carton, or meet the requirements of customers.(Note:DY-12 142# Fluffy
20、 Powder always be packed by 10kg/Iron Drum)Storage&Transportation: It must be stored in shade,dry&well-ventilate warehouse. Avoid to be contacted with oxidizing chemicals and combustible organic substances. Keep it away from direct sunlight,heat,sparks and open flames. Carefully handle the product a
21、nd avoid damaging the package.Application:a Dyeing and Printing Cotton and Viscose Fabricb Dyeing and Printing Silk,Wool,Vinyon and Nylon Fabricc Dyeing and Printing Paper Pulp,etc.Payment: T/T or L/CMinimum Order: 1000KGSPackages: 25kg or 40kg Iron Drum/ Fibre Drum/Carton, or meet the requirements of customers.Origin: Dongguang CountyHonghao Dyeing Chemical Co.ltd, Hebei Province, ChinaWeb:http:/ Msn:Phone:+86-317-7896222Mobile:+86-15031713099Fax:+86-317-7727900