1. Oracle数据库属于以下哪种数据库类型?B
A . 网状数据库
B.  关系数据库18岁女rapperdisssubs欢迎您
C.  层次数据库
D.  面向对象的关系数据库
2. 转发HTTP请求一般有两种方法,response.sendRedirect和RequestDispatcher.forward,哪种方法可以保存request.setAttribute()中设置的值不丢B
A.  sendRedirectss
B  forward
C  两个都不能
D  两个都可以
3. 如果你被要求写一段代码读取一个序列化的对象,那么一般使用哪种Stream?D
A  FileInputStream
B  FileReader
C  DataInputStream
D  ObjectInputStream
4. 下列关于    ORALCE数据库的描述,不正确的是A
    A.  索引表含ROWID值
    B.  一个事务即使不被提交,也会被写入到重做日志中
    C.  拥有不同大小的回滚段没有任何益处
    D.  COMMIT后,数据不一定立即写入数据文件中
5. 下面的main方法执行到A时,str的值是?A
  void main(){
      String str=”BEA”;
      dify(str);
        //A
  }
  void modify(String str){
      place(‘A’,’E’);
      LowerCase();
      str+=”B”;
}
A.  ”BEA”
B.  ”BEE”
C.  ”bee”
D.  ”beeB”
6. 下面哪个声明是错误?C
    A.  int i=0xFFFFFFFF;
    B.  byte b=01;
    C.  char c=\u0000;
    D.  long l=1234567890L;
    E.  int i=’a’;
7. 下面哪一个primitive type和对应的wrapper class是错误的?E
A.  java.lang.Integer
B.  g java.lang.Long
C.  short java.lang.Short
D.  void java.lang.Void
E.  char[] java.lang.String
8. 下面有关表和视图的叙述中错误的是B
A.  视图的数据可以来自多个表
B.  对视图的数据可以来自多个表
C.  基表不存在, 不能创建视图
D.  删除视图不会影响基表的数据
9. MyObject哪个方法会影响到这段代码的正确性以及效率?C
List list=new java.util.ArrayList();
List.add(new MyObject(“A”));
if(list.indexOf(new MyObject(“A”))){…..}
A.    toString
B.    hashCode
C.    equels
D.    clone
10. 指出下列程序运行的结果B
    public class Example{rust语言
          String str=new String(“good”);
          char[]ch={‘a’,’b’,’c’};
          public static void main(String args[]){
              Example ex=new Example();
              ex.change(ex.str,ex.ch);
transactional怎么读
              System.out.print(ex.str+”and”);
              System.out.print(ex.ch);
          }
          public void change(String str,char ch[]){
              str=”test okj”;
              ch[0]=’g’;
          }
        }
A.    good and abc
B.    good and gbc
C.    test ok and abc
D.    test ok and gbc
11. Which keyword is used to allow interaction with the lock flag ?C
        A.  native
        B.  static
        C.  synchronized
        D.  abstract
12. Which modifier should be used to define a constant member variable?B
        A.  static
        B.  final
        C.  abstract
        D.  No modifier can be used
13. 给出下面代码:
public class Person{
    static int arr[]=new int[10];
    public static void main(String a[])
{
  System.out.println(arr[1]);
}
    }
那个语句是正确的?C
A.    编译时将产生错误;
B.    编译时正确,运行时将产生错误;
C.    输出零
D.    输出空.
14. 欲构造ArrayList类的一个实例,此类继承了List接口,下列哪个认识方法是正确的?B
        A.  ArrayList myList=new Object();
        B.  List mylist=new ArrayList();
        C.  ArrayList myList=new List();
        D.  List myList=new List();
15. What class must an inner class extend;C
        A.  The top level class
        B.  The Object class
        C.  Any class or interface
        D.  it must extend an interface
Select the most appropriate answer
16. paint()方法使用哪种类型的参数A
        A.  Graphics
        B.  Graphics2D
        C.  String
        D.  Color
17. 下列哪个语句关于内存回收的说明是正确的B
        A.  程序员必须创建一个线程来释放内存;
        B.  内存回收程序负责释放无用内存
        C.  内存回收程序允许程序员直接释放内存
        D.  内存回收程序可以在指定的时间释放内存对象
18. 下列代码哪些行会出错BC
1)public void modify(){
2)int I,j,k;
3)I=100;
4)while(I>0){
count函数怎么用来统计单元格数量
5)j=I*2;
6)System.out.println(The value of j is + j);
7)k=k+1;
8)I--;
9)}
10)}   
        A.  line 4
        B.  line 6
        C.  line 7
        D.  line 8
19. Given the following fragment of code;
Double d1=new
Double(1.0);
Double d2=new
Double(1.0);
Float f=new Float(1.0F);
Which results of the following expressions are true?B
A.    d1==d2
B.    d1.equals(d2)
C.    d1=f
D.    f.equals(d1)
20. 对于下列代码:
1)class Person{
2)public void printValue(int i,int j){//..}
3)public void printValue(int i){//…}
4)}
5)public class Teacher extends Person{
6)public void printValue(){//…}
7)public void printValue(int i){//…}
8)public static void main(String [] args){
9)Person t=new Teacher();
10)t.printValue(10);
11)}
12)}
第10行语句将调用哪行语句?D
A. line 2
B. line 3
C. line 6
D. line 7
21. where in a constructor,can you place a call to a constructor defined in the super class.?B
A.Anywhere
B.The first statement in the constructor
C.The last statement in the constructor
D.You can’t call super in a constructor
select the most appropriate answer.
22. Given the following method in an application: A
随机抽奖工具
1.public String setFiletype(String fname){
java常见笔试题2.int p=fname.indexOf(“.”);
3.if(p>0)fname=fname.substring(0,p);
4.fname+=”.TXT”;
5.return fname;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。