温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,汇文网负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。
网站客服:3074922707
8.汽车服务行业公司人事招聘制度
Java软件工程师面试题
姓名: 面试日期与时间: 年 月 日 :
为了更全面地了解你的专业能力,请你尽力回答以下问题,谢谢合作!
1. SQLSERVER有numeric类型自动序列递增,请简述一下ORACLE中是如何实现序列自动自增功能的。
2. 写出ORACLE中的日期函数。
3. 简述一下STRUCTS的组成和处理过程。
4. What will be the output when you compile and execute the following program.
public class Base{
private void test() {
int i = 1;
switch (i) {
case 0:
System.out.println("zero");
break;
case 1:
System.out.println("one");
case 2:
System.out.println("two");
default:
System.out.println("default");
}
}
static public void main(String[] a) {
new Base().test();
}
}
Select most appropriate answer.
a) one b) one, default
c) one, two, default d) default
e) Compilation Error. switch cannot take an int as an argument
5. For what value of i, the following program will output "Less than 20"
public class Base{
private void test() {
int i ;
if(i < 10)
System.out.println("Less than 10");
else
if ( i < 20)
System.out.println("Less than 20");
else
System.out.println("Not less than 10");
}
static public void main(String[] a) {
new Base().test();
}
}
第1页, 共 页
Select all appropriate answers.
a) 0 b) 10 c) 11
d) 19.999; e) (int)19.99 f) None
6. For what value of i, the following program will output "Not Greater than 10"
public class Base{
private void test() {
int i ;
if(i > 10)
System.out.println("Greater than 10");
else
if ( i < 10)
System.out.println("Less than 10");
else
if ( i > 20)
System.out.println("Greater than 20");
else
System.out.println("Not Greater than 10");
}
static public void main(String[] a) {
new Base().test();
}
}
Select most appropriate answer.
a) 0 b) 10 c) 11 d) 100 e) None
7. The method test() throws an IOException. How do you specify that ?
import java.io.*;
import .*;
public class Base{
private void test()
{
String a = null;
if(a == null)
//throws IOException
}
}
Select all valid answers
a) private void test() throw IOException
b) private void test() throw new IOException("")
c) private void test() throws IOException()
d) private void test() throws IOException
e) private void test() raise IOException
答题区:
答题人签名: 日期:20 年 月 日 第2页, 共 页
答题区:
答题人签名: 日期:20 年 月 日 第 页, 共 页
答案:
1. 通过设置序列
2. Datetime timestamp
3. MVC model view contro
4. b
5. c d
6. b
7. d