Oracle Testking 1z0-808 v2016-09-27 by Sain 55q
Oracle Testking 1z0-808 v2016-09-27 by Sain 55q
Oracle Testking 1z0-808 v2016-09-27 by Sain 55q
Number: 1z0-808
Passing Score: 800
Time Limit: 120 min
File Version: 14.1
Version 14.1
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Exam A
QUESTION 1
What is the name of the Java concept that uses access modifiers to protect variables and hide them within a class?
A. Encapsulation
B. Inheritance
C. Abstraction
D. Instantiation
E. Polymorphism
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
Explanation:
Using the private modifier is the main way that an object encapsulates itself and hide data from the outside world.
Reference: http://www.tutorialspoint.com/java/java_access_modifiers.htm
QUESTION 2
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which two modifications, made independently, enable the code to compile?
Correct Answer: BC
Section: (none)
Explanation
Explanation/Reference:
QUESTION 3
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
And given the code fragment:
A. 4W 100 Auto
4W 150 Manual
B. Null 0 Auto
4W 150 Manual
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
C. Compilation fails only at line n1
D. Compilation fails only at line n2
E. Compilation fails at both line n1 and line n2
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 4
Given the code fragment:
Which two modifications should you make so that the code compiles successfully?
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 5
Given the following two classes:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
How should you write methods in the ElectricAccount class at line n1 so that the member variable bill is always equal to the value of the member
variable kwh multiplied by the member variable rate?
Any amount of electricity used by a customer (represented by an instance of the customer class) must contribute to the customer's bill (represented by
the member variable bill) through the method useElectricity method. An instance of the customer class should never be able to tamper with or decrease
the value of the member variable bill.
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: A
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Section: (none)
Explanation
Explanation/Reference:
QUESTION 6
Given the code fragment:
A. Match 1
B. Match 2
C. No Match
D. A NullPointerException is thrown at runtime.
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 7
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which option enables the code to compile?
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: C
Section: (none)
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Explanation
Explanation/Reference:
QUESTION 8
Given:
A. ABCD
B. ACD
C. ABCC
D. ABD
E. ABDC
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 9
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which code fragment should you use at line n1 to instantiate the dvd object successfully?
A. Option A
B. Option B
C. Option C
D. Option D
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 10
Given the code fragment:
Which option can replace xxx to enable the code to print 135?
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 11
Which statement best describes encapsulation?
A. Encapsulation ensures that classes can be designed so that only certain fields and methods of an object are accessible from other objects.
B. Encapsulation ensures that classes can be designed so that their methods are inheritable.
C. Encapsulation ensures that classes can be designed with some fields and methods declared as abstract.
D. Encapsulation ensures that classes can be designed so that if a method has an argument MyType x, any subclass of MyType can be passed to that
method.
Correct Answer: D
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Section: (none)
Explanation
Explanation/Reference:
QUESTION 12
Given the code fragment from three files:
Which code fragment, when inserted at line 2, enables the code to compile?
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 13
Given the following class:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
And given the following main method, located in another class:
Which three lines, when inserted independently at line n1, cause the program to print a o balance?
A. this.amount = 0;
B. amount = 0;
C. acct (0) ;
D. acct.amount = 0;
E. acct. getAmount () = 0;
F. acct.changeAmount(0);
G. acct.changeAmount(-acct.amount);
H. acct.changeAmount(-acct.getAmount());
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Explanation/Reference:
QUESTION 14
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: B
Section: (none)
Explanation
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Explanation/Reference:
QUESTION 15
Given the code fragment:
A. 100
B. 101
C. 102
D. 103
E. Compilation fails
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 16
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which two modifications, when made independently, enable the code to print joe:true: 100.0?
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 17
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Given the code fragment:
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 18
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What is the result?
A. CBA
B. C
C. ABC
D. Compilation fails at line n1 and line n2
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 19
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Given:
A. 3456
B. 3436
C. 5456
D. 3646
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 20
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which code fragment, when inserted at line 3, enables the code to print 10:20?
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 21
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What is the result?
A. A B C Work done
B. A B C D Work done
C. A Work done
D. Compilation fails
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 22
Which three are advantages of the Java exception mechanism?
A. Improves the program structure because the error handling code is separated from the normal program function
B. Provides a set of standard exceptions that covers all the possible errors
C. Improves the program structure because the programmer can choose where to handle exceptions
D. Improves the program structure because exceptions must be handled in the method in which they occurred
E. Allows the creation of new exceptions that are tailored to the particular program being created
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Explanation/Reference:
Reference: http://javajee.com/introduction-to-exceptions-in-java
QUESTION 23
Given the code from the Greeting.Java file:
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
QUESTION 24
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 25
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What is the result?
A. 24
B. 0246
C. 024
D. Compilation fails
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 26
Given the code fragment:
Assume that the system date is June 20, 2014. What is the result?
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 27
Given the code fragment:
Which code fragment, when inserted at line 9, enables the code to print true?
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
D. String str2 = "Duke";
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 28
Given the code fragment:
A. 10 : 10
B. 5 : 5
C. 5 : 10
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
D. Compilation fails
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 29
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 30
Which three statements describe the object-oriented features of the Java language?
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Objects cannot be reused.
B. A subclass can inherit from a superclass.
C. Objects can share behaviors with other objects.
D. A package must contain more than one class.
E. Object is the root class of all other objects.
F. A main method must be declared in every class.
Explanation/Reference:
QUESTION 31
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
B. Only s is accessible by obj.
C. Both r and s are accessible by obj.
D. p, r, and s are accessible by obj.
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 32
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What is the result?
A. Base
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
DerivedA
B. Base
DerivedB
C. DerivedB
DerivedB
D. DerivedB
DerivedA
E. A classcast Except ion is thrown at runtime.
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 33
Given the code fragment:
A. Execution terminates in the first catch statement, and caught a RuntimeException is printed to the console.
B. Execution terminates In the second catch statement, and caught an Exception is printed to the console.
C. A runtime error is thrown in the thread "main".
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
D. Execution completes normally, and Ready to use is printed to the console.
E. The code fails to compile because a throws keyword is required.
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 34
Given:
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: B
Section: (none)
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Explanation
Explanation/Reference:
QUESTION 35
Given the code fragments:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which code fragment, when inserted at line n1, enables the code to print Hank?
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 36
Given the code fragment:
A. ABC
B. ABCDE
C. ABDE
D. Compilation fails.
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 37
Given the code fragment:
A. true true
B. true false
C. false false
D. false true
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 38
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which code fragment, when inserted at line n1, enables the App class to print Equal?
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
QUESTION 39
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 40
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What is the result?
A. Element 0
Element 1
B. Null element 0
Null element 1
C. Null
Null
D. A NullPointerException is thrown at runtime.
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 41
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What is the result?
A. 10:20
B. 0:20
C. Compilation fails at line n1
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
D. Compilation fails at line n2
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 42
Given the definitions of the MyString class and the Test class:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 43
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What is the result?
A. Jesse 25
Walter 52
B. Compilation fails only at line n1
C. Compilation fails only at line n2
D. Compilation fails at both line n1 and line n2
Correct Answer: B
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Section: (none)
Explanation
Explanation/Reference:
QUESTION 44
Given the following code for a Planet object:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 45
You are asked to develop a program for a shopping application, and you are given the following information:
The application must contain the classes Toy, EduToy, and consToy. The Toy class is the superclass of the other two classes.
The int caicuiatePrice (Toy t) method calculates the price of a toy. The void printToy (Toy t) method prints the details of a toy.
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which definition of the Toy class adds a valid layer of abstraction to the class hierarchy?
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 46
Given the following code:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What are the values of each element in intArr after this code has executed?
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 47
Given the content of three files:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which statement is true?
Correct Answer: E
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Section: (none)
Explanation
Explanation/Reference:
QUESTION 48
Given the code fragment:
int[] array = {I, 2, 3, 4, 5};
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 49
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What is the result?
A. 400 200
B. 200 200
C. 400 400
D. Compilation fails.
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 50
Given the following class declarations:
public abstract class Animal
public interface Hunter
public class Cat extends Animal implements Hunter
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
Correct Answer: E
Section: (none)
Explanation
Explanation/Reference:
QUESTION 51
Which statement is true about Java byte code?
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Reference: http://www.math.uni-hamburg.de/doc/java/tutorial/getStarted/intro/definition.html
QUESTION 52
Given:
A. 1
B. 2
C. 3
D. 4
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
QUESTION 53
Given:
A. Area is 6.0
B. Area is 3.0
C. Compilation fails at line n1
D. Compilation fails at line n2.
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 54
Given the code fragment:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
Which three code fragments can be independently inserted at line nl to enable the code to print one?
A. Byte x = 1;
B. short x = 1;
C. String x = "1";
D. Long x = 1;
E. Double x = 1;
F. Integer x = new Integer ("1");
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 55
Given:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications
What is the result?
A. True false
B. True null
C. Compilation fails
D. A NullPointerException is thrown at runtime
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
www.vceplus.com - Download A+ VCE (latest) free Open VCE Exams - VCE to PDF Converter - VCE Exam Simulator - VCE Online - IT Certifications