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

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

Compartir libro
  1. English
  2. ePUB (apto para móviles)
  3. Disponible en iOS y Android
eBook - ePub

OCA / OCP Java SE 8 Programmer Practice Tests

Scott Selikoff, Jeanne Boyarsky

Detalles del libro
Vista previa del libro
Índice
Citas

Información del 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.

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es OCA / OCP Java SE 8 Programmer Practice Tests un PDF/ePUB en línea?
Sí, puedes acceder a OCA / OCP Java SE 8 Programmer Practice Tests de Scott Selikoff, Jeanne Boyarsky en formato PDF o ePUB, así como a otros libros populares de Informatica y Programmazione in Java. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Editorial
Sybex
Año
2017
ISBN
9781119363361
Edición
1
Categoría
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...

Índice