华为的JAVA笔试题

时间:2022-07-11 13:24:05 笔试 我要投稿
  • 相关推荐

华为的JAVA笔试题

华为的JAVA笔试题

一、 单项选择题

1.Java是从( )语言改进重新设计。

A.Ada B.C++ C.pasacal D.BASIC

答案:B

2.下列语句哪一个正确( )

A. Java程序经编译后会产生machine code

B. Java程序经编译后会产生byte code

C. Java程序经编译后会产生DLL

D. 以上都不正确

答案:B

3.下列说法正确的有( )

A. class中的constructor不可省略

B. constructor必须与class同名,但方法不能与class同名

C. constructor在一个对象被new时执行

D. 一个class只能定义一个constructor

答案:C

4.提供Java存取数据库能力的包是( )

A.java.sql B.java.awt C.java.lang D.java.swing

答案:A

5.下列运算符合法的是( )

A.&& B.<> C.if D.:=

答案:A

6.执行如下程序代码

a=0;c=0;

do{

--c;

a=a-1;

}while(a>0);

后,C的值是( )

A.0 B.1 C.-1 D.死循环

答案:C

7.下列哪一种叙述是正确的( )

A. abstract修饰符可修饰字段、方法和类

B. 抽象方法的body部分必须用一对大括号{ }包住

C. 声明抽象方法,大括号可有可无

D. 声明抽象方法不可写出大括号

答案:D

8.下列语句正确的是( )

A. 形式参数可被视为local variable

B. 形式参数可被字段修饰符修饰

C. 形式参数为方法被调用时,真正被传递的参数

D. 形式参数不可以是对象

答案:A

9.下列哪种说法是正确的( )

A. 实例方法可直接调用超类的实例方法

B. 实例方法可直接调用超类的类方法

C. 实例方法可直接调用其他类的实例方法

D. 实例方法可直接调用本类的类方法

答案:D

二、 多项选择题

1.Java程序的种类有( )

A.类(Class) B.Applet C.Application D.Servlet

2.下列说法正确的有( )

A. 环境变量可在编译source code时指定

B. 在编译程序时,所能指定的环境变量不包括class path

C. javac一次可同时编译数个Java源文件

D. javac.exe能指定编译结果要置于哪个目录(directory)

答案:BCD

3.下列标识符不合法的有( )

A.new B.$Usdollars C.1234 D.car.taxi

答案:ACD

4.下列说法错误的有( )

A. 数组是一种对象

B. 数组属于一种原生类

C. int number=[]={31,23,33,43,35,63}

D. 数组的大小可以任意改变

答案:BCD

5.不能用来修饰interface的有( )

A.private B.public C.protected D.static

答案:ACD

6.下列正确的有( )

A. call by value不会改变实际参数的数值

B. call by reference能改变实际参数的参考地址

C. call by reference不能改变实际参数的参考地址

D. call by reference能改变实际参数的内容

答案:ACD

7.下列说法错误的有( )

A. 在类方法中可用this来调用本类的类方法

B. 在类方法中调用本类的类方法时可直接调用

C. 在类方法中只能调用本类中的类方法

D. 在类方法中绝对不能调用实例方法

答案:ACD

8.下列说法错误的有( )

A. Java面向对象语言容许单独的过程与函数存在

B. Java面向对象语言容许单独的方法存在

C. Java语言中的方法属于类中的成员(member)

D. Java语言中的方法必定隶属于某一类(对象),调用方法与过程或函数相同

答案:ABC

9.下列说法错误的有( )

A. 能被java.exe成功运行的java class文件必须有main()方法

B. J2SDK就是Java ApI

C. Appletviewer.exe可利用jar选项运行.jar文件

D. 能被Appletviewer成功运行的java class文件必须有main()方法

答案:BCD

三、 判断题

1.Java程序中的起始类名称必须与存放该类的文件名相同。( )

答案:正确

2.Unicode是用16位来表示一个字的。( )

答案:正确

3.原生类中的数据类型均可任意转换。( )

答案:错误

(后记:没有想到华为的面试题就是非同一般,很多题不是一眼就能够看得出来,至少对我这种鸟来说是这样。对我个人来说,看看这样的题,可能比看《Think In Java》都还要好,因为这里面有很多的东西,都是我们平时没有太在意,或者是只是懂一点皮毛而已,通过做一下这样的练习,把自己不知道、不熟悉的知识点,利用这个机会好好的巩固一下。这些答案是我自己做的,有一些是从网上来的,有一部是自己做的,并且还有一部份没有做完,我不敢保证都对,所以请你在引用的时候,务必通过自己核对一下。当然,我既然能够把这些答案放在这里,那说明我肯定是自己检验了一遍的,也不是那么恐怖的)foo(A); foo(B) && (i < 2);foo(C)) { i++;foo(D); } } }QUESTION NO: 31. class A { 2. protected int method1(int a, int b) { return 0; } 3. } Which two are valid in a class that extends class A? (Choose two) A. public int method1(int a, int b) { return 0; } B. private int method1(int a, int b) { return 0; } C. private int method1(int a, long b) { return 0; } D. public short method1(int a, int b) { return 0; } E. static protected int method1(int a, int b) { return 0; }publicclassBextendsA{ //can not reduce the visibility of the inherited method from A //即不能够使从类A中继续来的方法的可见性降低 //private int method1(int a, int b) { return 0; } //This static method cannot hide the instance method from A //静态方法不能够隐藏继承于A的实例 //static protected int method1(int a, int b) { return 0; } //返回类型与A中的该方法不一致 //public short method1(int a, int b) { return 0; } //这里是写了一个重载方法,因为参数类型不一致,不会报错privateintmethod1(int a, long b) { return0; } //可见性可以增大,但是不能够缩小,正确publicintmethod1(int a, int b) { return0; }publicstaticvoidmain(String[] args) { // TODO Auto-generated method stub } }QUESTION NO: 41. public class Outer{ 2. public void someOuterMethod() { 3. // Line 3 4. } 5. public class Inner{} 6. public static void main( String[]argv ) { 7. Outer o = new Outer(); 8. // Line 8 9. } 10. } Which instantiates an instance of Inner? A. new Inner(); // At line 3 B. new Inner(); // At line 8 C. new o.Inner(); // At line 8 D. new Outer.Inner(); // At line 8//new Outer().new Inner() 答案如下:publicclassOuter {publicvoidsomeOuterMethod() { // Line 3new Inner();//放在这里不出错 }publicclassInner { }publicstaticvoidmain(String[] argv) { Outer o= new Outer(); // Line 8 //o不能够被解释成为一种类型,出错 //new o.Inner(); //new Outer.Inner(); //new Inner(); } }QUESTION NO: 5Which method is used by a servlet to place its session ID in a URL that is written to the servlet’s response output stream? (译:那个方法是servlet用于将其session ID入在一个URL中,该URL写入servlet的响应输出流) A. The encodeURL method of the HttpServletRequest interface. B. The encodeURL method of the HttpServletResponse interface. C. The rewriteURL method of the HttpServletRequest interface. D. The rewriteURL method of the HttpServletResponse interface.QUESTION NO: 6Which two are equivalent? (Choose two) A. <%=>

【华为的JAVA笔试题】相关文章:

华为硬件笔试题目08-11

华为面试经历06-18

亲历华为面试06-18

华为新员工报到Q&A(华为入职须知)04-27

华为面试问题03-24

华为几号发工资04-19

华为都有哪些部门02-28

华为资格面试内容08-10

Java实习报告09-20

华为d2怎么样,华为d2好吗?08-01