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

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

Buch teilen
  1. English
  2. ePUB (handyfreundlich)
  3. Über iOS und Android verfügbar
eBook - ePub

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

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.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist OCA / OCP Java SE 8 Programmer Practice Tests als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu OCA / OCP Java SE 8 Programmer Practice Tests von Scott Selikoff, Jeanne Boyarsky im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Informatica & Programmazione in Java. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Verlag
Sybex
Jahr
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...

Inhaltsverzeichnis