当前位置:七七学习网文档大全求职指南求职笔试面试笔试题目java软件开发工程师笔试题» 正文

java软件开发工程师笔试题

[10-10 21:21:19]   来源:http://www.77xue.com  笔试题目   阅读:8666
概要:B.Executing code is performed by the runtime interpreter.C.At runtime the bytecodes are loaded, checked and run in an interpreter.D.The class loader adds security by separating the namespaces for the classes of the local file system from those imported from network sources.15:A class design requires that a member variable should be accessible only by same package, which modifer word should be used?A.protectedB.publicC.no modiferD.private16:Charac
java软件开发工程师笔试题,标签:驾照笔试题目,腾讯笔试题目,http://www.77xue.com

  B.Executing code is performed by the runtime interpreter.

  C.At runtime the bytecodes are loaded, checked and run in an interpreter.

  D.The class loader adds security by separating the namespaces for the classes of the local file system from those imported from network sources.

  15:A class design requires that a member variable should be accessible only by same package, which modifer word should be used?

  A.protected

  B.public

  C.no modifer

  D.private

  16:Character流与Byte流的区别是

  A.每次读入的字节数不同

  B.前者带有缓冲,后者没有

  C.前者是块读写,后者是字节读写

  D.二者没有区别,可以互换使用

  简答题

  17:找出两个字符串中最大子字符串,如"abractyeyt","dgdsaeactyey"的最大子串为"actyet"

  18:假设你有一个用1001个整数组成的数组,这些整数是任意排列的,但是你知道所有的整数都在1到1000(包括1000)之间。此外,除一个数字出现两次外,其他所有数字只出现一次。假设你只能对这个数组做一次处理,用一种算法找出重复的那个数字。如果你在运算中使用了辅助的存储方式,那么你能找到不用这种方式的算法吗?

  19:到底在哪里使用cascade="..."?

  20:使用tomcat部署应用程序 遇到过java.lang.OutOfMemoryError 吗?如何解决的。

  21:请写一个java程序实现数据库缓冲池的功能?

  22:有200个正整数,且每个数均在1000至9999之间。请编制函数,其函数的功能是:要求按每个数的后三位的大小进行升序排列,然后取出满足此条件的前10个数依次存入数组bb中,如果后三位的数值相等,则按原先的数值进行降序排列。

  23:Anonymous Inner Class (匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)?

  24:找出字符串A中包含的字符可以进行的所有不同组合。例如:abccd中,ab,ac,bc,cc,abd等都是可能的组合。

  25:下面的代码在绝大部分时间内都运行得很正常,请问在什么情况下会出现问题?问题的根源在哪里?

  import java.util.LinkedList;

  public class Stack {

  LinkedList list = new LinkedList();

www.77xue.com哦

  public synchronized void push(Object x) {

  synchronized(list) {

  list.addLast( x );

  notify();

  }

  }

  public synchronized Object pop()

  throws Exception {

  synchronized(list) {

  if( list.size() <= 0 ) {

  wait();

  }

  return list.removeLast();

上一页  [1] [2] [3] [4] 


Tag:笔试题目驾照笔试题目,腾讯笔试题目求职指南 - 求职笔试面试 - 笔试题目
联系我们 | 网站地图 | 范文大全 | 管理知识 | 教学教育 | 作文大全 | 语句好词
Copyright http://www.77xue.com--(七七学习网) All Right Reserved.
1 2 3 4 5 6 7 8 9 10