出国留学网计算机等级考试模拟测试题

出国留学网专题频道计算机等级考试模拟测试题栏目,提供与计算机等级考试模拟测试题相关的所有资讯,希望我们所做的能让您感到满意!

2022年下半年计算机二级考试《JAVA》考前模拟测试题

 

  2022年下半年的计算机等级考试还剩下12月的最后一场考试,各位考生们即将在五天后正式迎来本次考试,大家是否已经做好了准备呢?本文中小编将为大家带来的内容是2022年下半年计算机二级考试《JAVA》考前模拟测试题,快来试一试自己的做题能力吧!

  1、在下列所给出的各种形式的重载定义中,哪一种定义方式是正确的( )

  (1) int add(int x , int y);

  int add(int x , int y, int z);

  (2) int add(int a , int b);

  int add(int x , int y);

  (3) int add(int x,int y);

  void add(int a , int b);

  (4) int add(int x , int y);

  void add(int y , int x);

  2、下列给出各种形式的Java程序类中的成员方法的重写定义形式,哪种定义形式是错误的( )

  (1) class Base{

  public void fun(){

  }

  }

  class Derived extends Base{

  public void fun(){

  }

  }

  (2) class Base{

  public void fun(){

  }

  }

  class Derived extends Base{

  public void fun( int X){

  }

  }

  (3) class Base{

  public void fun(){

  }

  }

  class Derived extends Base{

  private void fun(){

  }

  }

  (4) class Base{

  void fun(){

  }

  }

  class Derived extends Base{

  void fun(){

  }

  }

  3、在下面给出的各种形式的接口定义中,哪一种定义形式是错误的( )

  (1) interface MyInterface {

  public abstract void myfun() ;

  int myval=1;

  }

  (2) interface MyInterface {

  void myfrn( );

  public static final int myval=1;

  }

  (3) interface MyInterface {

  public abstract vo...