Number: 1z0-808 Passing Score: 800 Time Limit: 120 Min File Version: 14.1
Number: 1z0-808 Passing Score: 800 Time Limit: 120 Min File Version: 14.1
Number: 1z0-808
Passing Score: 800
Time Limit: 120 min
File Version: 14.1
Version 14.1
http://www.gratisexam.com/
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:
http://www.gratisexam.com/
A. Make the method at line n1 public.
B. Make the method at line n2 public.
C. Make the method at line n3 public.
D. Make the method at line n3 protected.
E. Make the method at line n4 public.
Correct Answer: BC
Section: (none)
Explanation
Explanation/Reference:
QUESTION 3
Given:
http://www.gratisexam.com/
And given the code fragment:
A. 4W 100 Auto
4W 150 Manual
B. Null 0 Auto
4W 150 Manual
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
http://www.gratisexam.com/
Section: (none)
Explanation
Explanation/Reference:
QUESTION 4
Given the code fragment:
Which two modifications should you make so that the code compiles successfully?
A. Option A
B. Option B
C. Option C
http://www.gratisexam.com/
D. Option D
E. Option E
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 5
Given the following two classes:
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.
http://www.gratisexam.com/
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
http://www.gratisexam.com/
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:
http://www.gratisexam.com/
Which option enables the code to compile?
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
http://www.gratisexam.com/
QUESTION 8
Given:
A. A B C D
B. A C D
C. A B C C
D. A B D
E. A B D C
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 9
Given:
http://www.gratisexam.com/
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
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
http://www.gratisexam.com/
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
Section: (none)
Explanation
Explanation/Reference:
QUESTION 12
http://www.gratisexam.com/
Given the code fragment from three files:
Which code fragment, when inserted at line 2, enables the code to compile?
A. Option A
B. Option B
C. Option C
D. Option D
http://www.gratisexam.com/
E. Option E
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 13
Given the following class:
Which three lines, when inserted independently at line n1, cause the program to print a o balance?
A. this.amount = 0;
http://www.gratisexam.com/
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());
Explanation/Reference:
QUESTION 14
Given the code fragment:
http://www.gratisexam.com/
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 15
Given the code fragment:
http://www.gratisexam.com/
What is the result?
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:
http://www.gratisexam.com/
Which two modifications, when made independently, enable the code to print joe:true: 100.0?
http://www.gratisexam.com/
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
Given the code fragment:
Correct Answer: D
Section: (none)
Explanation
http://www.gratisexam.com/
Explanation/Reference:
QUESTION 18
Given:
A. C B A
B. C
C. A B C
D. Compilation fails at line n1 and line n2
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
http://www.gratisexam.com/
QUESTION 19
Given:
A. 3 4 5 6
B. 3 4 3 6
C. 5 4 5 6
D. 3 6 4 6
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 20
Given the code fragment:
http://www.gratisexam.com/
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:
http://www.gratisexam.com/
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
Explanation/Reference:
Reference: http://javajee.com/introduction-to-exceptions-in-java
QUESTION 23
Given the code from the Greeting.Java file:
http://www.gratisexam.com/
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 24
Given:
http://www.gratisexam.com/
What is the result?
http://www.gratisexam.com/
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:
http://www.gratisexam.com/
A. 2 4
B. 0 2 4 6
C. 0 2 4
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?
A. Option A
B. Option B
C. Option C
http://www.gratisexam.com/
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?
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 28
Given the code fragment:
http://www.gratisexam.com/
What is the result?
A. 10 : 10
B. 5 : 5
C. 5 : 10
D. Compilation fails
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 29
Given the code fragment:
http://www.gratisexam.com/
And given the requirements:
If the value of the qty variable is greater than or equal to 90, discount = 0.5 If the value of the qty variable is between 80 and 90, discount = 0.2 Which two code
fragments can be independently placed at line n1 to meet the requirements?
A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
Correct Answer: D
Section: (none)
Explanation
http://www.gratisexam.com/
Explanation/Reference:
QUESTION 30
Which three statements describe the object-oriented features of the Java language?
Explanation/Reference:
QUESTION 31
Given:
http://www.gratisexam.com/
Which statement is true?
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 32
Given:
http://www.gratisexam.com/
What is the result?
A. Base
DerivedA
B. Base
DerivedB
C. DerivedB
DerivedB
D. DerivedB
http://www.gratisexam.com/
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".
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:
http://www.gratisexam.com/
QUESTION 34
Given:
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 35
Given the code fragments:
http://www.gratisexam.com/
Which code fragment, when inserted at line n1, enables the code to print Hank?
http://www.gratisexam.com/
D. checkAge(iList, (Person p) -> { p.getAge() > 40; });
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 36
Given the code fragment:
A. A B C
B. A B C D E
C. A B D E
D. Compilation fails.
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 37
Given the code fragment:
http://www.gratisexam.com/
What is the result?
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:
Which code fragment, when inserted at line n1, enables the App class to print Equal?
http://www.gratisexam.com/
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 39
Given:
http://www.gratisexam.com/
What is the result?
A. Option A
B. Option B
C. Option C
http://www.gratisexam.com/
D. Option D
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 40
Given the code fragment:
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
http://www.gratisexam.com/
Given:
A. 10:20
B. 0:20
C. Compilation fails at line n1
D. Compilation fails at line n2
Correct Answer: A
Section: (none)
http://www.gratisexam.com/
Explanation
Explanation/Reference:
QUESTION 42
Given the definitions of the MyString class and the Test class:
http://www.gratisexam.com/
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:
http://www.gratisexam.com/
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
Section: (none)
Explanation
Explanation/Reference:
QUESTION 44
Given the following code for a Planet object:
http://www.gratisexam.com/
What is the output?
http://www.gratisexam.com/
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.
Which definition of the Toy class adds a valid layer of abstraction to the class hierarchy?
http://www.gratisexam.com/
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:
What are the values of each element in intArr after this code has executed?
http://www.gratisexam.com/
A. 15, 60, 45, 90, 75
B. 15, 90, 45, 90, 75
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 47
Given the content of three files:
http://www.gratisexam.com/
Which statement is true?
Correct Answer: E
Section: (none)
Explanation
Explanation/Reference:
http://www.gratisexam.com/
QUESTION 48
Given the code fragment:
int[] array = {I, 2, 3, 4, 5};
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 49
Given:
http://www.gratisexam.com/
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
A. Option A
http://www.gratisexam.com/
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?
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:
http://www.gratisexam.com/
How many MarkList instances are created in memory at runtime?
A. 1
B. 2
C. 3
D. 4
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 53
Given:
http://www.gratisexam.com/
What is the result?
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:
http://www.gratisexam.com/
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:
http://www.gratisexam.com/
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:
http://www.gratisexam.com/