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

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

Condividi libro
  1. English
  2. ePUB (disponibile sull'app)
  3. Disponibile su iOS e Android
eBook - ePub

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

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.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
OCA / OCP Java SE 8 Programmer Practice Tests è disponibile online in formato PDF/ePub?
Sì, puoi accedere a OCA / OCP Java SE 8 Programmer Practice Tests di Scott Selikoff, Jeanne Boyarsky in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Informatica e Programmazione in Java. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Editore
Sybex
Anno
2017
ISBN
9781119363361
Edizione
1
Argomento
Informatica

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...

Indice dei contenuti