第一篇:java英语面试试题整理
1.What are java beans?
JavaBeans is a portable, platform-independent component model written in the Java programming language, developed in collaboration with industry leaders.It enables developers to write reusable components once and run them anywhere--benefiting from the platform-independent power of Java technology.JavaBeans acts as a Bridge between proprietary component models and provides a seamless and powerful means for developers to build components that run in ActiveX container applications.Java beans is very powerful tool you can use in your servlet/JSP bridge.You can use the servlets to build the bean and can be passed over to the JSP for reading.This provides tight encapsulation of the data while preserving the sanctity of servlets and JSP。2.What is RMI?
RMI stands for Remote Method Invocation.Traditional approaches to executing code on other machines across a network have been confusing as well as tedious and error-prone to implement.The nicest way to think about this problem is that some object happens to live on another machine, and that you can send a message to the remote object and get a result as if the object lived on your local machine.This simplification is exactly what Java Remote Method Invocation(RMI)allows you to do.3.How does Java inheritance work?
A class can only directly extend one class at a time.Multiple inheritance is only allowed with regard to interfaces.A class can implement many interfaces.But a class can only extend one non-interface class.4.How does exception handling work in Java?
1.It separates the working/functional code from the error-handling code by way of try-catch clauses.2.It allows a clean path for error propagation.If the called method encounters a situation it can't manage, it can throw an
exception and let the calling method deal with it.3.By enlisting the compiler to ensure that “exceptional” situations are anticipated and accounted for, it enforces powerful coding.4.Exceptions are of two types: Compiler-enforced exceptions, or checked exceptions and Runtime exceptions, or unchecked exceptions.Compiler-enforced(checked)exceptions are instances of the Exception class or one of its subclasses--excluding the RuntimeException branch.The compiler
expects all checked exceptions to be appropriately handled.Checked exceptions must be declared in the throws clause of the method throwing them--assuming, of course, they're not being caught within that same method.The calling method must take care of these exceptions by either catching or declaring them in its throws clause.Thus, making an exception checked forces us to pay heed to the possibility of it
being thrown.An example of a checked exception is java.io.IOException.As the name suggests, it throws whenever an input/output operation is abnormally terminated.5.Does Java have destructors?
Java does not have destructors.Garbage collector does this job periodically depending upon the memory requirements of the machine and on the fact that a particular object is no longer needed.But it has finalizers that does a similar job.The syntax is
public void finalize(){ }
If an object has a finalizer, the method is invoked before the system garbage collects the object, but using finalize()does not guarantee that it would be called b4 garbage collector is invoked.6.What does the “final” keyword mean in front of a variable? A method? A class?
A final variable cannot be reassigned, but it is not constant.For instance, final StringBuffer x = new StringBuffer();
x.append(“hello”);
is valid.X cannot have a new value in it, but nothing stops operations on the object that it refers, including destructive operations.Also, a final method cannot be overridden or hidden by new access specifications.This means that the compiler can choose to in-line the invocation of such a method.(I don't know if any compiler actually does this, but it's true in theory.)
The best example of a final class is String, which defines a class that cannot be derived.6.Access specifiers: “public”, “protected”, “private”, nothing?
Public?Any other class from any package can instantiate and execute the classes and methods Protected? Only subclasses and classes inside of the package can access the classes and methods Private? The original class is the only class allowed to execute the methods.And in case if there is no modifier specified, it means, only the classes inside the package can access this class and its methods, it is also called “Friendly”.Question:What is the difference between an Interface and an Abstract class?Question: What is the purpose of garbage collection in Java, and when is it used?
Question:Describe synchronization in respect to multithreading.1.what is single inheritance.ans:one class is inherited by only other one class
9.what is interface.ans:Interface has only method declarations but no definition
10.what is differenec between abstract class and interface.ans:In abstract class some methods may contain definition,but in interface every method should be abstract
11.how to u prove that abstrace class cannot instantiate directly.ans:As they dont have constructor they cant be instantiated
12.what is differenece between string and stringbuffer.ans:Strings are immutable where as string buffer can be modified
13.what is immutable
ans:Which cant be changed
18.what is legacy interface.ans: legacy is something that is old in terms of technology/ system
19.what is main difference hashmap and hastable
ans:Hash table is synchronized
20.what is main difference between arraylist and vector.ans:Vector is synchronised
22.what are distributed techonologies.distributed technologies means any technology / s/w program that are having many components in
multiple environments that interact with each other depending on the functional requirements and design.23.what is advantage and disadvantage of distributed techonologies.language is avoided.Application can be built flexible to meet requirements.Division of labour is
possible.Best of all the technologies and platforms can be optimally utilized.Complexity of requirements can be reduced.25.what is difference between procedure and functions.''
ans:Fuctions can return value ,procedures cant return value
26.what is jdbc.ans:Connecting to DB from java program requires JDBC
31.what is deployment descriptor.ans:Which contains the infrnmation like which file to be used
40.what is platfrom independent
ans:A language is said to be platform independent if it can be run on any machine with out modifying code
46.what is major concepts in oops.ans:Abstraction,polymorphism,encapsulation,inheritance
48.what is implicit object.ans:Implicit objects are a set of Java objects that the JSP Container makes available to developers in each page
49.how many implicit objects in jsp
ans:out,page,session,request,response,application,page context,config
介绍下自己情况
技术问题.基本在论坛上面资料都cover了.比如 list和array 区别, pass by reference or value, memory leakage, oo基本问题, overload/override, 数据库clustered or non-clustered.还有quick sort和 binary sort介绍.复杂度.适用在哪里.有什么问题等等.基本准备下应该没有问题,都很基本.这个过了就进入最后一轮 AC, 是5.5个小时的.从早上8:30开始.相比以前和其他公司.今年这个长度我觉得不累.哈哈.往年有1天半的AC.晕
面试基本是.group discussion+2个technical interviews+1个interpersonal skill interview.全部2个对你一个.group discussion 是给了几个os+database+gui资料, 然后要求选择哪个合适.四个人一组.然后2个人资料是来自相同department的email.根据自己和其他人的资料.选系统.我可以说的就是.要get involved, 如果有不了解问题.不要怕要问其他人来确认..做完后.hr会杀入在给一个资料.然后继续做讨论15分钟.反正就是多说就是了.多和其他人交流.然后就是一般面试...介绍自己, 为什么要做这个,为什么学这个学校, teamwork, 对公司了解, 有个特别点问题就是.如果你是boss在开10人大会.下面你的员工说的东西有个很大的错误,而且很基本的错误.你怎么办.还有如果回到几年前.你会有什么选择会改变吗.(我就说不读phd了,申请ms直接.哈哈)这个部分问题很多.准备要充分.而且很多问题是根据你自己回答.他们追下去问.后面就是两个technical interview, 我大概回忆下.有np/p问题, hashmap, hash原理, deadlock问题, java GC 问题, 还有很多多线程问题(具体有点忘记了), 记得一个GC在多线程环境下的操作.还有j2ee问题.介绍下spring, soap, hibernate.(基本就可以了).c 内存操作问题, 还有 internet, ip和tcp区别.然后osi说几个protocols.第二个面试.基本都是数据结构.写个 binary search tree 来找某个值, 要递归和非递归的.然后hash table, 还有点不记得了.然后数据库.写个简单的er 图.学生, 课程.然后写sql.还要早最大值.然后排序的sql.基本的很.然后说下dns是什么.怎么实现的.最后说下从你在浏览器输入一个网址.到内容被全部显示的过程, 原理等等.基本面试完了.然后去吃饭和以前的graduate scheme的人聊聊.
第二篇:JAVA面试
马老师:
您好,昨天下午面试的中软资源。因为笔试时间很短(她之前并没说多长时间,我估计就只有30多分钟就要收卷),而且题量很大,所以没有记下题目,不过前面的题目都很简单,主要是咱们做的那些基础题。后面的主观题是:
1、详细叙述5种以上种的设计模式
2、详细说明类的设计原则
3、sql语句的调优
还有一个忘记了!
完了之后人事的会做初步面试,首先自我介绍,然后问离职原因,以前的一些工作情况。再就是简单介绍他们目前要做的项目情况,会说工作很幸苦之类的话,最后会问薪水要求!
再就是技术人员面,感觉他们对基础知识很看重,当然首先是自我介绍。会问到一些详细的知识点,比如说怎么配置DWR,sql语句的调优,当然项目也是得问的,主要介绍最近的项目,做过什么东西!
最后是技术总监,开始也是自我介绍。技术方面问的少,就问我jbpm和我做过什么以及用到的一些开源框架和工具。然后问3到5年的职业规划,再给我一份英文的文档让我翻译(他不会告诉你是关于什么方面,我傻到居然去问他)。后面有人遇到这种情况要先看文档大标题,完了告诉他这文档大概是关于什么的(给我的是分需求文档),不要一上来就往细里看,那位总监就批评过我,完了再看细节。最后问我有什么问题!
如果问到的一些知识没听过,就说这些不会是以后项目开发中的问题,因为我们以前也是好多技术都是在项目中边学习边开发的,不可能我们什么技术都会了都准备好了再去做开发。面试中也问道过俩,我不知道是什么,按照上面的回答,感觉对方还是比较满意,也没有为难我!
这些都跟面得职位有关,职位不同情况可能不同。我面得是中软内部的职位,不是外包。
中科软笔试
1.集合类
2.servlet生命周期
3.string,stringbuffer,区别,int integer 区别
4.常见的运行时异常
5.写出几个常见的类,包,接口
6.写一个单例
7.抽象类和接口的区别
8.还有两页的SQL选择题,我不太记得了
9.怎么配置tomcat的内存大小
10.数据库连接池的原理
11.触发器有哪几种,并说说每一种
12.还有JSP中静态include和动态include区别
13.jsp的9种内置对象
14.选择题好几个都是关于主键的,记不清了
还有一个是写几种常用的数据结构,并写出实现原理
还有一个也是数据 结构上的,我不记得了,我连见都没见过 还有一个是程序改错题,挺简单的
第三篇:面试笔试题总结(java)
笔试题部分:
1、(北京37期)编程题:编写一段程序用于生成随机码,入参为随机码长度,出参为随机码,要求随机码中必须包含大小写字母及数字
,2015/5/5 15:59:38
2、(北京37期)编写一段程序用于判断一个字符串是否是合法的IP地址
3、笔试题最难的内容:
根据给定的表,写一个存储过程:
客户信息表(客户编号、客户名称,联系方式...)
订单表(订单号,订单名称,订单价格合计,订单明细信息id,客户编号)订单明细表(id,产品名称,单位,单价,数量)该存储过程要求根据客户编号,查询该客户的订单以及该订单下不同产品价格合计;
即: 客户编号、客户 名称、订单号、订单名称、产品id、数量合计、价格合计
4、笔试题最恶心的:英文阅读翻译等;脑筋急转弯;
5、没涉及到的笔试题(自己百度或者求助同学)
6、其他笔试题(老师将上一期学生笔试题内容以图片形式保存了,到时候按时下载)
7、不用循环写一个小于5000以2的倍数递增并输出值?
上机题:
上机题可能有如下几个考点:
1、手动搭建SSH框架,写一套增删改查
2、解析一个XML文件(sax、DOM解析)
3、写一个方法,实现扫描指定路径下某个文件夹中所有文件(获取文件个数,文件名称等);
4、使用SSH框架,结合给定页面,实现功能(一般涉及到ajax)
面试题部分:
1、谈谈你对java的了解?
Java是面向对象的、具有安全性、可移植性、跨平台性、并发性。Java有三个平台J2EE、J2ME、J2SE
2、面向对象的三个特性:
继承封装多态(体现在哪里?)
继承:子类继承父类,子类能够继承父类中非私有的方法或者变量,继承的好处是可以使程序大量的复用;缺点是如果过多继承会导致程序结构庞大
封装:体现在包、访问修饰符以及setget方法取值,还有某些操作封装到方法中
多态:实例化对象,一个类可以new多次,构造方法的重载重写也体现多态;
3、面向对象的过程
面向对象分析、面向对象设计、面向对象编程
4、java的八个基本数据类型 和对应的包装类和每一种类型的长度
Byte、short、int、long、double、float、char、boolean
5、异常和错误区别? 运行时异常和非运行时异常(编译时异常)区别,说出几个你用过的异常?如何捕获异常?Throws和throw区别?
异常: 程序运行过程中产生的某些错误,程序人员通过修改程序可以修复的,程序员可以预知的错误;
错误: 表示系统级别的错误,例如系统崩溃,jvm内存溢出等;无法预知并且修改程序也无法避免的;
运行时异常:表示程序运行过程中产生的异常,可以不强制try catch捕获或者不强制的throws,程序可以编译通过;
非运行时异常:表示程序编译过程中就捕获的异常,需要强制try catch或者throws抛出,程序运行时,一旦产生非运行时异常,程序无法编译通过;
如何捕获异常? 通过try catch finally try{表示放可能产生异常的程序} catch(可能产生的异常){如果符合该异常,此时执行该语句段,表示这里要处理该异常}finally{不论是否有异常都执行该语句段} Throws:在方法声明时使用,表示该方法可能产生的异常,谁调用该方法,谁捕获处理;当前方法不处理不捕获
Throw:表示抛出一个具体异常,使用在方法体中;例如:throw new Exception(“异常消息”);
6、String和StringBuffer区别?为什么用StringBuffer拼字符串? String 表示不可长度字符串,finally不可被继承的类;
StringBuffer:表示可变长度字符串,通过append方法追加字符串,默认有16位缓冲区,时能new实例化赋值,不能=号赋值;
使用StringBuffer拼接字符串以为StringBuffer长度可变,并且通过append方法追加字符串,节省内存:例如: “a”+”b”+”c” 此时字符串池中有: a b c ab
abc几个字符串;而通过StringBuffer:
则字符串池中有: a
b c 和 abc
7、线程和进程区别?如何理解锁?
线程:一段可执行的代码段;多个线程共同完成一个任务; 进程:一个可执行的应用程序;
解决死锁可以通过:synchronized 关键词,实现多个线程中不同方法,在同一时间内,只能有一个线程在执行;其他线程等待,直到该线程释放资源;
8、Wait和sleep方法区别?
Wait方法是object类中的,sleep是Thread类中的
9、如何定义一个线程?
重写Thread类中的Run方法,或者实现Runnable接口中Run方法
10、Collection和Collections区别
Collection是集合接口,Collections是封装了操作集合方法的类;
11、Set和List区别
Set无序,不可以重复;
List有序,可以重复;
12、LinkedList和vector以及ArrayList区别 LinkedList: 链表实现,对该集合新增修改删除数据速度快,效率高,线程不安全; Arraylist:数组实现,对该集合操作时,从该集合中查询数据速度快,效率高,线程不安全;
Vector: 数组实现,线程安全,效率低;
13、HashMap和HashTable区别:
HasMap: 键值对可以为空;线程不安全;
HashTable: 键值对不可以为空;线程安全;
14、PreparedStatement 和Statement区别:
前者使用预编译sql,效率高,安全,后者未采用预编译sql,效率低;
15、名词解释: jdbc、JNDI、BI、VO、DAO、IOC、AOP、OOP、DI(依赖注入)、MVC、ORM(关系映射模型)、盒子模型、JDBC:java 数据库链接;即:java提供操作数据库的东西; JNDI:java 命名目录接口; BI:商业智能; VO:值对象;
DAO:数据访问对象也就是:java访问数据库的第一层接口; IOC:控制翻转;(Spring时候讲)AOP:面向切面编程(Spring讲)OOP:面向对象编程; DI: MVC:是一种开发模式,M:model模型层,V view 视图层 C Controller 控制层;
控制层主要负责模型层以及视图层数据交互;
ORM:关系映射模型;(Hibernate,Mybatis等都是ORM框架)
盒子模型:css中的一种模型;将页面元素认为是现实中盒子,他们都具有border 边框 Content内容,padding(补白)内边距 margin外边距 等特点,这就是盒子模型;
16、接口和抽象类区别?为什么用接口(弥补java单继承特点)?为什么用抽象类(提取公共部分内容,达到代码复用目的和多态)?
接口:是Interface,是一种特殊的抽象类,为了弥补java单继承的特点,接口可以继承多个接口,也可以实现多个类,声明的变量为常量,方法默认public 省略abstract关键词;
使用时必须通过类重写里面所有抽象方法;
抽象类: 是abstract 声明的类,可以有抽象方法,也可以有非抽象方法;
不能被实例化,只能通过子类继承重写里面所有抽象方法,通过实例化子类使用;
用抽象类可以提取公共部分,然后子类重写相关方法或者抽象方法,实现多态以及程序的复用;
接口目的就是为了弥补单继承缺点;因为接口可以弥补多继承;
17、Break(退出整个循环)、continue(退出当前循环,只能用于循环或者switch语句)和return(退出整个方法体表示该方法有返回值)区别
18、Finally(异常语句块中的,表示有无异常都执行该方法体)、final(声明变量为常量,声明类不可被继承)、finalize(垃圾回收机制中自动调用的方法)区别
19、如何获取随机小数?如何获取随机整数?
Math.random()
Random.类 20、io流的种类? 哪里用到了io流,?什么时候用字节流,什么时候用字符流?
说一下你用过的流有哪些?
(1)字节流和字符流
(2)文件上传下载以及解析xml时加载文件等,还有某些框架底层用到了
(3)读取文件内容,即文本,使用字符流,其他情况都是用字节流
(4)字节流: InputStram,OutputStream FileInputStram、FileOutputStream
BufferedInputStream。BufferedOutputStream
字符流:Reader、Writer、BufferedReader、BufferedWriter、FileReader、FileWriter、InputStreamReader、OutputStreamWriter
21、内部类种类?
匿名内部类、非静态内部类、静态内部类、局部内部类
22、list、set如何重新排序?如何让set有序?
重写Comparable 以及Comparator 中的comparaTo以及compare方法
23、重写以及重载区别?
重写发生在继承中,子类继承父类,要求子类方法与父类方法名,参数个数,返回值必须相同;
重载是发生在当前类中,方法名相同,参数个数不同,类型不同即可;
24、Static用法:
static表示声明的变量或者方法只能被实例化一次,并且被一个对象的不同实例共享,类名可直接打点调用;
25、super和this区别?
Super调用父类对象,使用时如果在子类构造方法中,必须写第一行,不能用在static中;
This表示当前类对象,不能用static中;
26、Jsp的两中包含:
动态包含,被包含页面不独立存在,先包含进来在编译;
<%@include> 静态包含,被包含的页面独立存在,先编译完毕后再包含进来;
27、jsp的就个内置对象:
out、page、request、session、application、config、pageContext、exception、response
四个作用域: page(最小)、request、session、application(最大)
28、过滤器用在哪儿?
即:filter,可以实现权限控制以及转码,某些框架中也使用了(struts2)
29、监听器? Session、request、application(ServletContex类型)
监听在线人数、通过application初始化时加载数据或者配置; 30、servlet的声明周期?
服务器加载后,servlet容器通过init方法初始化,然后客户端访问服务器时,经过servlet的指定的urlpattern,然后进入指定servlet类中的service方法处理业务逻辑,然后响应给客户端,服务器关闭通过destory方法销毁servlet容器;
31、Session和Cookie区别:
Session’表示一次会话,客户端访问服务器端,会有唯一session表示该客户端,有一个sesionid是唯一的; 浏览器关闭只能是断开会话,而session依然存在,直到过期或者手动销毁;(web.xml中可以设置或者通过set...方法设置有效时间)
Session是保留在服务器端的;过多使用给服务器端带来压力; Cookie是键值对存储数据,保留在客户端不安全;
32、Jsp中的<%%> <%!%> <=%>区别
<%%> 可以声明变量也可以写操作;
<%!%> 只能用于声明变量,声明变量是全局的;
<%=%> 表示输出,显示某个字段值,类似于out.print();
33、客户端跳转(重定向)或者服务器端跳转(转发)区别?
客户端跳转当页面刷新时,不会再次发送请求,以前的request中存放的变量全部失效,并进入一个新的request作用域。
服务器端跳转当刷新页面会再次提交请求,并且服务器端跳转时以前的request中存放的变量不会失效。
34、初始化快和静态初始化块区别:
类中写static{}永远只加载一次,单利的、比构造方法早
类中写{} 每次加载类都执行,比构造方法早
35、为什么用构造方法?(初始化成员变量使用的)
36、Js如何操作DOM?什么是DOM(文本对象模型)?
(1)按照id获取对象、按照name属性获取、按照标签获取、按照form找
document.getElementById(“”)
document.getElementsByName(“”)document.getElementsByTagName(“”)Document.forms[0].id或者name属性
38、如何js创建一个节点?如何用jquery创建一个节点?
Js: document.createElement(“标签名”)Jquery: $(“