OCA / OCP Java SE 8 Programmer Practice Tests
eBook - ePub

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

Share book
  1. English
  2. ePUB (mobile friendly)
  3. Available on iOS & Android
eBook - ePub

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

Book details
Book preview
Table of contents
Citations

About This Book

Test your knowledge and prepare for the OCA/OCP exams

OCA/OCP Java SE 8 Programmer Practice Tests complements the Sybex OCA: Oracle Certified Associate Java SE 8 Programmer I Certification Study Guide and the OCP: Oracle Certified Professional Java SE 8 Programmer II Study Guide for exams 1Z0-808 and 1ZO-809 by providing last minute review of 100% of exam objectives. Get the advantage of over 1, 000 expert crafted questions that not only provide the answer, but also give detailed explanations. You will have access tounique practicequestions that cover all 21 objective domains in the OCA/OCP exams in the format you desire--test questions can also be accessed via the Sybex interactive learning environment. Two additional practiceexams will ensure that you are ready for exam day. Whether you have studied with Sybex study guides for your OCA/OCP or have used another brand, this is your chance to test your skills.

  • Access to all practicequestions online with the Sybex interactive learning environment
  • Over 1, 000unique practice questions and 2 practiceexams include expert explanations
  • Covers 100% of all 21 OCA/OCP objective domains for Exams 1Z0-809 and 1Z0-809

Studying the objectives are one thing, but diving deeper and uncovering areas where further attention is needed can increase your chance of exam day success. Full coverage of all domains shows you what to expect on exam day, and accompanying explanations help you pinpoint which objectives deserve another look.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is OCA / OCP Java SE 8 Programmer Practice Tests an online PDF/ePUB?
Yes, you can access OCA / OCP Java SE 8 Programmer Practice Tests by Scott Selikoff, Jeanne Boyarsky in PDF and/or ePUB format, as well as other popular books in Informatica & Programmazione in Java. We have over one million books available in our catalogue for you to explore.

Information

Publisher
Sybex
Year
2017
ISBN
9781119363361

PART I
OCA

Chapter 1
Java Basics

THE OCA EXAM TOPICS COVERED IN THIS PRACTICE TEST INCLUDE THE FOLLOWING:
  • Java Basics
    • Define the scope of variables
    • Define the structure of a Java class
    • Create executable Java applications with a main method; run a Java program from the command line; produce console output
    • Import other Java packages to make them accessible in your code
    • Compare and contrast the features and components of Java such as: platform independence, object orientation, encapsulation, etc.

  1. Which of the following method signatures is a valid declaration of an entry point in a Java application?
    1. public void main(String[] args)
    2. public static void main()
    3. private static void start(String[] mydata)
    4. public static final void main(String[] mydata)
  2. The following class diagram demonstrates the relationship between Gold and Silver, which extend the Metal class. Assume the attributes are all declared public. Which statement about the diagram is not true?
    Diagram shows metal with weight and color as characters which are common component for gold-hue and silver-luster as its characters to demonstrate relationship.
    1. The diagram demonstrates platform independence in Java.
    2. The diagram demonstrates object-oriented design in Java.
    3. The Gold and Silver classes inherit weight and color attributes from the Metal class.
    4. Gold does not inherit the luster attribute.
  3. What is the proper filename extension for a Java bytecode compiled file?
    1. .java
    2. .bytecode
    3. .class
    4. .dll
  4. Given that a Date class exists in both the java.util and java.sql packages, what is the result of compiling the following class?
     1: import java.util.*; 2: import java.sql.*; 3: public class BirthdayManager { 4: private Date rob = new Date(); 5: private java.util.Date sharon = new java.util.Date(); 6: }
    1. The code does not compile because of lines 1 and 2.
    2. The code does not compile because of line 4.
    3. The code does not compile because of line 5.
    4. The code compiles without issue.
  5. Which of the following is not a facet of traditional object-oriented programming languages?
    1. Ob...

Table of contents