1 / 47
文档名称:

Scjp Exam - Testking 310-055 Sun Java Certified Programmer v3.0.pdf

格式:pdf   页数:47
下载后只包含 1 个 PDF 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

Scjp Exam - Testking 310-055 Sun Java Certified Programmer v3.0.pdf

上传人:bolee65 2014/8/7 文件大小:0 KB

下载得到文件列表

Scjp Exam - Testking 310-055 Sun Java Certified Programmer v3.0.pdf

文档介绍

文档介绍:310-035
Sun Certified Programmer
for Java 2 Platform
Version
310 - 035
Important Note
Please Read Carefully
Study Tips
This product will provide you questions and answers along with detailed explanations
piled and written by our experts. Try to understand the concepts behind the
questions instead of cramming the questions. Go through the entire document at least twice so
that you make sure that you are not missing anything.
Latest Version
We are constantly reviewing our products. New material is added and old material is revised.
Free updates are available for 90 days after the purchase. You should check your member
zone at TestKing an update 3-4 days before the scheduled exam date.
Here is the procedure to get the latest version:
1. Go to
2. Click on Member zone/Log in
3. The latest versions of all purchased products are downloadable from here. Just click
the links.
For most updates, it is enough just to print the new questions at the end of the new version,
not the whole document.
Feedback
Feedback on specific questions should be send to ******@. You should state:
Exam number and version, question number, and login ID.
Our experts will answer your mail promptly.
Copyright
Each pdf file contains a unique serial number associated with your particular name and
contact information for security purposes. So if we find out that a particular pdf file is being
distributed by you, TestKing reserves the right to take legal action against you according to
the International Copyright Laws.
Leading the way in IT testing and certification tools,
-2 -
310 - 035
Note: Major update with additional questions late May/early June.
QUESTION NO: 1
Given:
1. public class Test {
2. public static void main(String args[]) {
3. class Foo {
4. public int i = 3;
5. }
6. Object o = (Object)new Foo();
7. Foo foo = (Foo)o;
8. (“i = “+ );
9. }
10. }
What is the res