成人高考,自考,网络教育,在职研究生等学历教育
在线报名在线报名
培训课程培训课程
分站加盟分站加盟
培训学校培训学校
VIP服务VIP服务
复习指导复习指导
会员中心会员中心
论坛交流论坛交流
  • 首页
    • 首页
  • 学历教育
    • 学历教育
    • 成人高考
    • 自学考试
    • 网络教育
    • 在职研究生
    • 中专中技
    • 高考招生
  • 职业培训
    • 职业培训
    • 公务员
    • 外语类
    • 财会类
    • 建筑类
    • 职业资格
    • 医药类
    • IT认证
    • 外贸类
    • 更多>>
  • 高考出国
    • 高考出国
  • 在线报名
    • 在线报名
  • 网络课堂
    • 网络课堂
  • 关于我们
    • 关于我们

 您的位置:真才教育 >> 职业培训 >> IT认证

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<>
  for (var j=i+1;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.
  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

 

 

编辑/真才教育  bingyi>>>>>>查看更多文章

关键字:JAVA认证 考试

 


 

发布时间:2010.07.28    来源:教育网

【收藏此页】【大 中 小】【打印】【回到顶部】
上一篇文章:2010年成人高考专升本政治时事复习手册
下一篇文章:教育部公布中小学“减负”试点 力推素质教育
文章搜索:
最新资讯
  • ·[中专中技]教育部公布中小学“减负”试点 力推素质
  • ·[高考招生]内蒙古2011年高考艺术类招生实施办法公
  • ·[高考招生]西藏2011年艺术类专业招生12月月14日开
  • ·[中专中技]中考成绩提高必须坚持九大法则
  • ·[中专中技]沈阳市中考时间调整网上调查开始
  • ·[招生信息]2011年全国研考人数比2010年增11万
  • ·[在职研究生]深圳2011年考研人数又上新台阶
  • ·[成人高考]北京今年11万人参加成考 实考率达到九成
  • ·[网站推广技巧心得]如何快速提高网站的PR值
  • ·[网站推广技巧心得]什么是网站PR值
模拟题
成考
自考
中考
  • 2010年成考专升本政治时事复习手册
  • 成考复习:语文主观题要从原文中找答案
  • 成考专升本高数(一)模拟题及解析
  • 2010年成人高考高起点物理命题预测试题(2
  • 2010年成人高考高起点物理命题预测试题(3
  • 2010年成人高考高起点物理命题预测试题(4
  • 2010年成人高考高起点物理命题预测试题(5
  • 2010年成人高考高起点物理命题预测试题(6
  • 2010年成人高考高起点物理命题预测试题(7
  • 2010年成人高考高起点物理命题预测试题(8
  • 全国2009年10月高等教育自学考试办公自动
  • 生理学试题_全国2009年7月自考试卷
  • 全国2009年10月高等教育自学考试综合英语
  • 全国2009年7月高等教育自学考试综合英语(
  • 全国2009年7月高等教育自学考试大学语文试
  • 全国2006年4月高等教育自学考试新闻学概论
  • 全国2009年10月高等教育自学考试中国近现
  • 全国2009年1月自考学前比较教育试题
  • 2008年1月全国自学考试试题幼儿文学试卷
  • 全国2009年7月高等教育自学考试中国古代文
  • 银行从业资格考试公共基础试题
  • 银行从业资格考试公共基础试题
  • 南京一中三年级政治模拟练习I卷
  • 南京一中三年级政治模拟练习H卷
  • 南京一中三年级政治模拟练习G卷
  • 南京一中三年级政治模拟练习F卷
  • 南京一中三年级政治模拟练习E卷
  • 南京一中三年级政治模拟练习D卷
  • 南京一中三年级政治模拟练习C卷
  • 南京一中三年级历史模拟练习I卷
报考指南
更多..
  • 2010年成人高考各科目复习指南
  • 教育部通知,成考专升本报考严格审查考生学
  • 分析成人高考招生院校有3种不同类型
  • 成人高考新生答卷注意事项及应试守则
  • 决胜成人高考的七个鲜为人知的方法
  • 成考辅导班四类模式 考生可根据个人基础选
  • 法律类专业——法学专业介绍
  • 管理类专业——人力资源管理
  • 营销类的相关专业介绍
  • 2010年成人高考考试大纲沿用2007年考试大
信息推荐
  • ·[ 成人高校]华东政法大学继续教育学院
  • ·[报考指南]2010年托福报名网站:托福报名官方网
  • ·[考试大纲]蒋中挺解读2011年考研政治大纲及备
  • ·[成考动态]陕西2009年成人高考集中录取结束不
  • ·[院校动态]上海大学2009年自主招收百名应届高
  • ·[ 成人高校]兰州教育学院
  • ·[中考动态]兰州市四区2010年中考报名时间确定
  • ·[职业培训]证券发行与承销备考:国债承销业务的
  • ·[财会类]2011年清远市会计职称考试报名时间
  • ·[新闻动态]湖南09年成考录取11月20日开始
  • 真才教育首页 | 报名须知 | 关于我们 | 成人高考 | 职业培训 | 高考出国 | 在线报名 | 联系我们 | 网站地图
    报名地址:广州市天河区中山大道西8号天河商贸大厦605   咨询报名电话:020-33747854   020-87515503   020-89736978 020-33781291
    传真:020-87515503   QQ:353886838   763563818   真才教育培训网会有专人为您服务
    粤ICP备09072464号