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

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

Partager le livre
  1. English
  2. ePUB (adapté aux mobiles)
  3. Disponible sur iOS et Android
eBook - ePub

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

À propos de ce livre

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.

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que OCA / OCP Java SE 8 Programmer Practice Tests est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  OCA / OCP Java SE 8 Programmer Practice Tests par Scott Selikoff, Jeanne Boyarsky en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans Informatica et Programmazione in Java. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Éditeur
Sybex
Année
2017
ISBN
9781119363361
Édition
1

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 des matiĂšres