动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > Java教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
网络编程:ASP教程,ASP.NET教程,PHP教程,JSP教程,C#教程,数据库,XML教程,Ajax,Java,Perl,Shell,VB教程,Delphi,C/C++教程,软件工程,J2EE/J2ME,移动开发
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ Java教程 ]的信息

本月文章推荐
.在LINUX下配置JAVA开发环境.
.复制文件夹内容和删除整个文件夹.
.对代理模式与Java动态代理类的理.
.线程的理解.
.用jscript对表单数据进行utf-8编.
.格式化输出数字.
.Velocity实例.
.JavaMail API简介完整介绍.
.采用Ant进行诊断测试.
.Swing指南:Spinner Model Contro.
.90%的重叠10%的较量——C#与Java.
.电话管理系统.java.
.JGraph开发经验谈.
.Convert from type X to type Y.
.优秀IT书籍下载集锦100本.
.用Web Service进行企业级的.
.eclipse-SDK-3.1M4-linux-gtk.
.节点包含checkbox的Swing树控件.
.基于MVC设计模式的WEB应用框架研.
.使用 WebSphere V5 工具和技术来.

310-025 Braindumps

发表日期:2008-1-5 |



  Hamid
  
  
  
  
  310-025
  
  
  
  
  77%
  
  
  
  
  Hi every eXPected Java programmer
  
  
  whish u all the best
  
  
  I cleared the exam on 06-08-01 with grade 77%
  
  
  I am also MCSE. But this exam is not like a microsoft exam. its too mUCh tough than that.Following are the steps which help me passing the exam.
  
  
  
  
  Firt of all i study the "Complete Reference" not all chapter just related chapter. Then i study "The complete java 2 certification study guide" by Simmon Robert and "A programmers guide to java certification" by Khalid Mughal.
  
  
  At last i done different Mock exams like Morcus greens three exams and khalid mughals mock exams and four days before exam i study the sasasite.com questions
  
  
  following are the question of exam which are right now in my memory.
  
  
  
  
  Prerequist: Determination and hardworking
  
  
  
  
  
  
  Q#1-Which are the reserved Words in java(choose two).
  
  
  Ans. 1-implements, 2-default
  
  
  
  
  Q#2-out put of the following code on execution
  
  
  
  
  int i = 1;
  
  
  while(i){
  
  
  
  
  do some thing
  
  
  
  
  }
  
  
  
  
  Ans. code will not compile
  
  
  
  
  Q#3- when the object created at line 3 will elligible garbage collected.
  
  
  1-public class foo{
  
  
  2-public object m(){
  
  
  3-Object o=new Float(2.14F);
  
  
  4-Object [] oa=new Object[1];
  
  
  5-oa[0]=o;
  
  
  6-o=null;
  
  
  7-return o;
  
  
  }
  
  
  }
  
  
  I choose after line 6 which was wrong.
  
  
  
  
  Q#4-almost four question on overriding overloading which was very simple.
  
  
  Q#5-out put when execute the following code
  
  
  
  
  public static void main(String arg[]){
  
  
  try{
  
  
  methodA();
  
  
  }catch(IOException io){
  
  
  System.out.println("caught IOException");
  
  
  }catch(Exception e){
  
  
  System.out.println("caught Exception");
  
  
  }
  
  
  }
  
  
  public void methodA(){
  
  
  throw new IOException();
  
  
  }
  
  
  }
  
  
  
  
  Ans-compilation error
  
  
  
  
  Q#6 Type in
  
  
  System.out.println(6^3);
  
  
  Ans-5
  
  
  
  
  Q#7 which give output "true" (choose two)
  
  
  
  
  Integer i = new Integer(5);
  
  
  Double d = new Double(5);
  
  
  Long l = new Long(5);
  
  
  option given was
  
  
  1-System.out.println(i==d);
  
  
  2-System.out.println(d==l);
  
  
  3-System.out.println(i.equal(d));
  
  
  4-System.out.println(i.equal(l));
  
  
  5-System.out.println(d.equal(l));
  
  
  i think all give "false" output ,all wording is same as i write
  
  
  i can not understand how he is aSKINg about true, because no one giving true output.
  
  
  
  
  Q#8 Type in, what was the result when the following code compile
  
  
  String s = new String("xyz");
  
  
  StringBuffer sb = new StringBuffer("abc");
  
  
  s = s.substring(2);
  
  
  System.out.println(s+sb);
  
  
  i am not sure about this question.
  
  
  
  
  Q#9 what collection used when uniqueness rquired and retrieve in natural order
  
  
  1-set
  
  
  2-sortedset
  
  
  3-map
  
  
  4-collection
  
  
  Ans- i choose sortedset.
  
  
  
  
  Q#10 what will be output when compile the following code
  
  
  public class x implements Runnable{
  
  
  private int x;
  
  
  private int y;
  
  
  
  
  public static void main(String args[] ){
  
  
  x that = new x();
  
  
  (new Thread(that)).start();
  
  
  (new Thread(that)).start();
  
  
  }
  
  
  public synchronized void run(){
  
  
  for( ; ; ){
  
  
  x++;
  
  
  y++;
  
  
  System.out.Println("x=" + x + ", y=" +y);
  
  
  
  
  Ans-value of x and y will be same on same and appears onece and will not twice
  
  
  
  
  Q#11 local classes can Access only final variales(Question was something like that)
  
  
  Three question about inner and anonymous classes
  
  
  
  
  Q#12 output when following code compile and execute.
  
  
  public class Foo{
  
  
  public static void main(String[] args){
  
  
  try{
  
  
  return;}
  
  
  finally{ System.out.println("finally.");}
  
  
  }
  
  
  }
  
  
  Ans-finally
  
  
  
  
  Q#13 what ensure j will be 10 at line 16
  
  
  
  
  1 class A implements Runnable {
  
  
  2 int I;
  
  
  3 public void run () {
  
  
  4 try {
  
  
  5 Thread.sleep(5000);
  
  
  6 i=10;
  
  
  7 }catch(InterruptedException e) {}
  
  
  8 }
  
  
  9 }
  
  
  10 public class Test {
  
  
  11 public static void main (String args[]) {
  
  
  12 try {
  
  
  13 A a = new A();
  
  
  14 Thread t = new Thread(a);
  
  
  15 t.start();
  
  
  16
  
  
  17 int j= a.i;
  
  
  18 }catch (Exception e) {}
  
  
  19 }
  
  
  }
  
  
  Ans-t.join
  
  
  
  
  Q#14 method of mousemotionlistener interface
  
  
  A. public void mouseDragged(MouseEvent)
  
  
  B. public boolean mouseDragged(MouseEvent)
  
  
  C. public void mouseDragged(MouseMotionEvent)
  
  
  D. public boolean mouseDragged(MouseMotionEvent)
  
  
  E. public boolean mouseDragged(MouseMotionEvent)
  
  
  
  
  Answer:
  
  
  A
  
  
  
  
  Q#15 what will be the value of i
  
  
  int i = 0xfffffff1
  
  
  1-0
  
  
  2-1
  
  
  3-15
  
  
  4-could not compile
  
  
  
  
  Q#16 valid class declaration
  
  
  Ans-//comments any where then package statement then import statement .
  
  
  
  
  Q#17 What will be the most suitable access modifier of method if we want to access in the class and all its subclasses
  
  
  Ans-protected
  
上一篇:SCJP 310-025 Braindumps 人气:591
下一篇:最大限制地提高代码的可重用性 人气:396
浏览全部Java的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-10-6 Menalto Gallery v2.3 Rc2 多国语
2008-10-6 花香盈路(Hxcms) v9.0
2008-10-6 华军软件下载系统 v1.5
2008-10-6 e107 v0.7.13
2008-10-6 (开源PHP框架) CodeIgniter v1.6
2008-10-6 PHP在线考试系统PPExam v1.2.6 b
2008-10-6 SiteDynamic企业网站管理系统 v1
2008-10-6 WebPlayer9 P2P视频点播电影整站
2008-10-6 BCMS v1.1 测试版
2008-9-29 酷狗音乐(原KuGoo)2008 v5.310 正
2008-9-29 QQTab 1.1
2008-9-29 网络传送带 Net Transport 2.64a
2008-9-29 谷歌金山词霸v1.8
2008-9-29 TweakVI 1.0 Build 1090
2008-9-29 ACDSee Pro 2.5 Build 333 汉化绿
2008-9-29 Winamp v5.541(2189) 周明波简体
2008-9-27 CCleaner 2.12.651
2008-9-27 Mozilla Thunderbird 2.0.0.17 英
  发表评论
姓 名: 验证码:
内 容:
站长工具:网站收录查询 | Google PR查询 | ALEXA排名查询 | CSS在线编辑器 | 广告代码 | js/vbs加密 | md5加密 | 进制转换 | UTF-8 转换工具 | Html转换js | Html转换asp | Html转换php | Html转换perl
实用工具:汉字翻译拼音 | 拼音字典 | 符号对照表 | 个税计算 | 实时汇率查询换算 | 经典小工具 | 汉字简繁转换 | 普通单位换算 | 公制单位换算 | 生辰老黄历 | 国内电话区号 | 国家代码与域名缩写 | 文字加密解密 | 健康查询 | 万年历 | 汉字横竖排版 | 手机号码查询 | 计算器 | ip搜索
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2008 www.knowsky.com All rights reserved | 网络实名:动态网站制作指南 | 沪ICP备05001343号
ホームページ制作 不動産検索システム 求人情報
防水工事·改修工事 フットサル大会 探偵
SEO対策 中国語教室 ホームページ作成