资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

2014IGT软件测试开发工程师笔试(java-B1版)-创新互联

【IGT】 Paper Test For Campus Recruiting

为榆中等地区用户提供了全套网页设计制作服务,及榆中网站建设行业解决方案。主营业务为做网站、成都网站制作、榆中网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!

注:分享出来,仅做个人知识点的查漏补缺以及鞭策自己更加努力地学习!(粗体红字为鄙人做的答案,可能会有错误,还望能有人指出。)

Part 1:

1、which of these is a legal definition of a method named m assuming it throws IOExecption,and returns void .Also assume that the method does not take any arguments.Select the one correct answer.

A void m() throws IOExecption{}

B void m() throw IOExecption{}

C void m(void) throw IOExecption{}

D void m(){}throws IOExecption{}

2、which of the following is legal identifier name in java.

A %abcd

B 1abcd(第一个为数字1)

C package

D _a_long_name

(知识点说明:Java语言规定标识符是以字母、下划线"_"或美元符号"$"开始,随后可跟数字、字母、下划线或美元符号的字符序列,当然不能用关键字作为标识符。)

3、what will happen when you attempt to compile and run the following code?

package igt;

public class igt {

public static void main(String[] args){

int i;

switch(i){

case 0:System.out.println(0);

case 1:System.out.println(1);break;

case 2:System.out.println(2);

case 3:System.out.println(3);break;

}

}

}

A 0

B 01

C 0123

D compile error

(知识点说明:关于java变量是否自动初始化问题--成员变量会被初始化,局部变量不会初始化。局部变量如果定义时没有进行初始化,系统不会自动为其进行初始化,因而编译时会出错。如下图所示:

2014 IGT 软件测试开发工程师笔试(java-B1版)


4、what will be the output of the program?

public class test_4 {

static class A{

public int x = 10;

public int y = 20;

int f(){

return y;

}

}

static class B extends A{

public int x = 1;

public int y = 30;

int f(){

return y;

}

}

public static void main(String[] args){

A a = new B();

System.out.print(a.x+",");

System.out.println(a.f());

}

}

A 10,20

B 10,30

C 1,20

D 1,30

(实验得出结果是B,不解中....)

5、what will be the output of the program?

public class test_5 extends Base{

static{

System.out.print("6");

}{

System.out.print("5");

}

public test_5(){

System.out.print("4");

}

public static void main(String[] args){

new test_5();

}

}

class Base{

static{

System.out.print("3");

}{

System.out.print("2");

}

public Base(){

System.out.print("1");

}

}

A 326514

B 361425

C 362154

D 362514
(实验得出结果是C,不解中....)

Part 2:

6、please decribe the scenarios of using String StringBuffer StringBuilder,and what is the difference between StringBuffer and StringBuilder?

7、please explain the difference between checked exception and runtime exception and the usage of these two kinds of exception.

8、please give an example of self-defined class that could be sorted in Collections.sort() method

9、please list at least three design patterns and its usage in your daily development.

Part 3:

10、please implement a function to find the longest common sub-string of two given string.

for example:

string a: abcdefg12345

string b:cdef234

longest common sub-string:cdef

(字符串匹配问题常考查,需研究透彻!)

--------------------------未解问题,待续。


新闻名称:2014IGT软件测试开发工程师笔试(java-B1版)-创新互联
文章位置:http://cdkjz.cn/article/pijij.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220