`
jinchun1223
  • 浏览: 259035 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

IBMjava英文面试题目

阅读更多

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
50.why choose weblogic8.1 other than any applicationserver.
51.what is water fall model vs sdlc
52.what is use of dataflowdiagrams
53.wha t is ip in ur project.
54.what about reception module

—————————————————————————————————————————————————————————

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;i<N-1;i++) {
for (var j=i+1;j<N;j++) {
if ( 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

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


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/SmartTony/archive/2008/02/03/2080439.aspx

分享到:
评论

相关推荐

    IBM java 英文面试题(附参考答案)

    在IBM的Java英文面试中,面试官可能会提出各种问题来测试候选人的技术能力和项目经验。以下是一些面试题目的详细解答: 1. **Oracle**:Oracle是一家全球知名的数据库管理系统提供商,其产品包括Oracle数据库,广泛...

    java面试题目与技巧1

    │ java程序员面试资料.zip │ JAVA笔试题(上海释锐).pdf │ MIME简介.txt │ SCJP试题详解.pdf │ SQL面试题_心灵深处.htm │ Struts+Hibernate+Spring轻量级J2EE企业应用实战.pdf │ Struts中文手册.pdf │ ...

    IBM应届毕业生面试笔试指南

    总的来说,准备IBM的应届生面试笔试需要全面复习计算机科学基础知识,提升逻辑推理和数学计算能力,同时注重英语和软技能的培养。利用好提供的资料,结合实际项目经验,将有助于在面试笔试中脱颖而出,赢得IBM的青睐...

    java面试题以及技巧

    │ java程序员面试资料.zip │ JAVA笔试题(上海释锐).pdf │ MIME简介.txt │ SCJP试题详解.pdf │ SQL面试题_心灵深处.htm │ Struts+Hibernate+Spring轻量级J2EE企业应用实战.pdf │ Struts中文手册.pdf │ ...

    java面试题及技巧4

    │ java程序员面试资料.zip │ JAVA笔试题(上海释锐).pdf │ MIME简介.txt │ SCJP试题详解.pdf │ SQL面试题_心灵深处.htm │ Struts+Hibernate+Spring轻量级J2EE企业应用实战.pdf │ Struts中文手册.pdf │ ...

    IBM笔试资料及面试

    7. **英语能力**:由于IBM是一家国际公司,因此英语阅读和理解能力也很重要,可能会有英文的笔试题目或技术文档。 面试环节则更注重综合能力的考察,除了技术问题,还会有行为面试和案例分析。例如: - **行为面试...

    个人整理IBM所有笔试面试资料大全

    技术面试中,面试官可能会问及你的专业技能,如编程语言(如Java、Python、C++)、数据库管理、项目经验等,还会考察你在团队合作中的角色和解决实际问题的能力。行为面试则关注你的沟通技巧、团队协作、领导力、...

    java程序员面试题集和部分外企笔试真题总结

    3. **英语阅读理解**:外企通常会考察候选人的英文阅读能力,以便在国际化环境中进行有效沟通。 4. **软件工程**:包括软件生命周期、需求分析、项目管理、版本控制等,了解软件开发的整体流程。 5. **系统设计**...

    java面试题及技巧3

    │ java程序员面试资料.zip │ JAVA笔试题(上海释锐).pdf │ MIME简介.txt │ SCJP试题详解.pdf │ SQL面试题_心灵深处.htm │ Struts+Hibernate+Spring轻量级J2EE企业应用实战.pdf │ Struts中文手册.pdf │ ...

    java面试题以及技巧6

    │ java程序员面试资料.zip │ JAVA笔试题(上海释锐).pdf │ MIME简介.txt │ SCJP试题详解.pdf │ SQL面试题_心灵深处.htm │ Struts+Hibernate+Spring轻量级J2EE企业应用实战.pdf │ Struts中文手册.pdf │ ...

    Java面试宝典和大学生面试宝典

    如果对方在电话面试中要求你 做英文的自我介绍,或者干脆用英文和你对话,那在电话面试结束后一 定要好好准备英文面试的内容。 笔者曾经参加过 Thoughtworks 、Sybase、 SAP、麒麟原创等公司的电 话面试。外企一般...

    IBM蓝色之路笔试面试题

    3. **编程基础**:虽然不是所有职位都需要深厚的编程技能,但IBM仍然会测试应聘者的基础编程知识,如算法、数据结构和基本的编程语言理解(如C++、Java、Python)。 4. **英语阅读理解**:作为一家跨国公司,IBM对...

    转IBM面试记

    可以利用英语学习软件、观看英文电影或电视剧、阅读英文文章等方式提升英语综合能力。对于技术领域的专业词汇,也应该加强记忆。 #### 电话面试 - **面试官**:由J.P.Morgan的人来进行电话面试,全程使用英语。 - ...

    IBM面试及笔试经历(超值).rar

    IBM作为全球知名的科技巨头,其面试和笔试过程是求职者关注的焦点,涉及到的技术和非技术环节都具有很高的参考价值。以下将详细解读IBM面试及笔试经历中的关键知识点。 首先,IBM的面试通常分为多个阶段,包括电话...

    你也能拿高薪!IBM面试、笔试题答案(key)

    3. **英语阅读理解**:IBM是一家跨国公司,因此对英语能力有一定要求,尤其是阅读理解能力,以确保候选人能够理解和处理英文文档。 4. **编程题**:IBM重视编程能力,可能会要求你在限定时间内编写代码来解决特定...

    100家大公司java笔试题汇总.doc

    【Java面试题解析】 1. **名词解释** ...以上内容是对IBM及其他大公司Java笔试题目的部分解析,涵盖Java基础、面向对象、并发、Unix命令以及编程题目等多个方面。理解和掌握这些知识点对于准备Java面试至关重要。

    ibm笔试

    IBM可能会要求应聘者解决实际编程问题,涉及语言可能包括Java、Python、C++等。考生需熟悉基本数据结构(如数组、链表、树、图)、排序和搜索算法,以及设计和实现复杂逻辑的能力。 4. **案例分析**:针对管理咨询...

    IBM_笔试__精华集合 IBM不错哦

    【IBM笔试精华集合】是针对想要进入IBM公司工作的人们准备的一个重要参考资料,它涵盖了IBM在招聘过程中可能涉及的各种笔试题目和知识点。IBM,全称国际商业机器公司,是全球领先的科技巨头,尤其在信息技术、计算机...

Global site tag (gtag.js) - Google Analytics