`
youyun_2008
  • 浏览: 114821 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

转 java interview

阅读更多
1.what is oracle.
2.what is major differenece oracle8i and oracle9i.
4.tell me some thing ur self.
5.please tell me about oops.
6.what is single inheritance.
7.what is multiple inheritance.
8.can java support multiple inheritance.
9.what is interface.
10.what is differenec between abstract class and interface.
11.how to u prove that abstrace class cannot instantiate directly.
12.what is differenece between string and stringbuffer.
13.what is immutable
14.how to write a program using sort program.
15 how to write a program using unsort program.
16.what is legacy.
17.what is legacy api
18.what is legacy interface.
19.what is main difference hashmap and hastable
20.what is main difference between arraylist and vector.
21.what is struts framework.
22.what are distributed techonologies.
23.what is advantage and disadvantage of distributed techonologies.
24.what is main difference between jsp and servlets.
25.what is difference between procedure and functions.
26.what is jdbc.
27.what are type of drivers.
28.what is type 4 driver.
29.how to collect requuirements form u r client.
30.which process use in ur project.
31.what is deployment descriptor.
32.what is heirarchy of files in struts.
33.please draw struts frame wrok.
34.please draw j2ee architecture.
35.please draw mvc-2 architecture.
36.please draw that how design op module.
37.how to find a file on linux.
38.how to configure weblogic8.1 on linux.
39.why you use struts framework in ur project.
40.what is platfrom independent
41.what is awt and swing.
42.what is heavy wieght components.
43.what is feature of weblgoic8.1.
44.why you choose application server on linux and database server on aix.
45.please tell me about ur project.
46.what is major concepts in oops.
47.why u choose mvc-2 architecture.
48.what is implicit object.
49.how many implicit objects in jsp
—————————————————————————————————————————————————————————
1. Oracle is an RDBMS product with DDL and DML from a company called Oracle Inc.
2. Difference between 8i and 9i is given in the Oracle site
3. Question not available
4. Something
5. oops is Object Oriented Programming
6.what is single inheritance.
ans:one class is inherited by only other one class
7.what is multiple inheritance.
ans:One class inheriting more than one class at atime
8.can java support multiple inheritance.
ans:No
9.what is interface.
ans:Interface has only method declarations but no defn
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
14.how to write a program using sort program.
15 how to write a program using unsort program.
ans: Both can be done using javascript
This is for Sort
function SelectTextSort(obj) { // sort by text
var N=obj.options.length;
for (var i=0;ifor (var j=i 1;jif ( obj.options[i].text > obj.options[j].text ) {
var i1= (obj.options[i].selected == true ) ? true : false
var j1= (obj.options[j].selected == true ) ? true : false
var q1 = obj.options[j].text;
var q2 = obj.options[j].value;
obj.options[j].text = obj.options[i].text;
obj.options[j].value = obj.options[i].value;
obj.options[i].text = q1;
obj.options[i].value = q2;
obj.options[i].selected = (j1 && true ) ? true : false
obj.options[j].selected = (i1 && true ) ? true : false
}
}
}
return true
}
16.what is legacy.
17.what is legacy api
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 synchronised
20.what is main difference between arraylist and vector.
ans:Vector is synchronised
21.what is struts framework.
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.
overdependance on single platform / single 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
27.what are type of drivers.
type1,2,3,4
29.how to collect requuirements form u r client.
is not a job of a technical person. It is better for a BA to do it.
30.which process use in ur project.
Generally u can say:
Project related process: Analysis, Design, Sign-off Documents, Implementation, Integration, Testing, UAT
Work related process:
Technical Design, Work Allocation, Code Review Checklist, Unit Test Form will be prepared by the Project Lead and given to the developer.
Developer prepares the Unit Test Case
Implements Code, Performs Test
Submits Code through CVS / VSS
Submits documents along with Release Checklist to the tester / leader.
31.what is deployment descriptor.
ans:Which contains the infrnmation like which file to be used
不好意思,暂缺32到39的参考答案.
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
41.what is awt and swing.
ans:AWT are heavy weight components and swings are light weight components
46.what is major concepts in oops.
ans:Abstraction,polymorphism,encapsulation,inheritance
47.why u choose mvc-2 architecture.
ans:In MVC-2 controller is servlet rather than JSP which makes it efficient
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
分享到:
评论

相关推荐

    Java Interview Notes_ 700 Java Interview Questions Answered.pdf

    根据提供的文件信息,这份《Java Interview Notes_ 700 Java Interview Questions Answered.pdf》的文档内容非常丰富,涵盖了Java编程语言面试时可能遇到的多个核心知识点。下面是根据标题和描述生成的知识点详细...

    Java Interview Questions/Java面试题

    博文链接:https://hidefromall.iteye.com/blog/219683

    java interview question

    ### Java高效性原因 Java语言之所以被认为是高效的编程语言,原因之一是它在设计时充分考虑了跨平台兼容性,它通过Java虚拟机(JVM)实现了一次编写,到处运行的特性。当Java程序编译成字节码(.class文件)后,便...

    Top 1000 Java Interview Questions

    ### Java基础知识 1. **JDK与JRE的区别:** - **JRE(Java Runtime Environment):** 这是运行Java程序所必需的基本环境。它包括了Java虚拟机(JVM)、类库和其他的一些基本组件。 - **JDK(Java Development Kit...

    Java interview-高级Java面试题2019-java-interview.zip

    Java interview-高级Java面试题2019_java-interview.zip

    Java Interview Guide.epub

    This book is a comprehensive guide that will prepare you for a Java interview. I've conducted over 100 interviews at Fortune 500 companies and meticulously collected the most effective questions with ...

    JAVA interview questions

    Java面试是每位Java开发者职业生涯中的重要环节,它不仅测试了候选人的基础知识,还评估了他们的实际问题解决能力。以下是一些常见的Java面试问题及其详细解释,涵盖了基础、进阶和实践方面: 1. **基本概念** - *...

    Java-Interview-Question.pdf

    在Java面试中,通常会涉及一系列的基础知识点和概念,以考察应聘者是否具备Java编程的扎实基础和对面向对象编程的深入理解。以下是根据提供的文件内容整理的Java知识点详解: ### Java语言特点 Java是一种面向对象...

    【java面试题】100IT名企java面试必考面试题 Java Interview Question

    (Java Interview Question 100 IT Enterprise Java Compulsory Interview Question) 【java面试题】100IT名企java面试必考面试题 (Java Interview Question 100 IT Enterprise Java Compulsory Interview Question)

    Core-Java-Interview-Questions.rar_core java interview

    "Core Java Interview Questions"这个资源集锦了面试中可能会遇到的一些关键问题,旨在帮助求职者更好地准备Java核心技术的面试。以下是根据描述和标签提炼出的一些核心Java知识点: 1. **Java基础** - 类与对象:...

    Java interview-高级Java面试题2019.zip

    Java interview-高级Java面试题2019

    Java Interview 知识点总结与面试_Interview.zip

    Java Interview 知识点总结与面试_Interview

    Java Interview Questions updated on Sep 2018

    ### Java Interview Questions 更新于2018年9月 #### 1. 什么是JVM? JVM(Java虚拟机)是运行Java应用程序所必需的解释器及其运行时环境的组合。它提供了一个运行Java字节码的标准平台,使得Java程序可以在任何...

    Java Interview Bootcamp epub

    Java Interview Bootcamp 英文epub 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除

    java interview questions Top 20 java interview programs and answers.2017

    本书《Java Coding Interview》旨在帮助读者在面试过程中取得优异的成绩,传授给求职者必要的面试准备知识。作者有着指导和面试过数百名软件工程师的经验,本书的面试题目是真实的,不仅来自于真实公司的面试问题,...

    Core Java Interview Question Page 1.doc

    Core Java Interview Question Page 1

    Java Interview QA

    java 面试中一些关键的常常被问到的问题。 面试宝典。

    Java Interview Bootcamp 无水印pdf

    Java Interview Bootcamp 英文无水印pdf pdf所有页面使用FoxitReader和PDF-XChangeViewer测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或...

Global site tag (gtag.js) - Google Analytics