Modalidad de imparticiónLa modalidad del Curso Certificación JAVA SE 8 Oracle es Presencial, en Cali.
Número de horasEl Curso de Universidad Cooperativa de Colombia se lleva a cabo en 5 días.
Titulación oficialLos estudiantes que aprueben el Curso, obtienen la certificación: JAVA SE 8 Oracle.
Valoración del programaA través de este Curso, los estudiantes tendrán un acercamiento al lenguaje de programación utilizando Java SE 8. Aprenderán los conceptos básicos, y aplicarán todos los conocimientos adquiridos durante el programa en ejercicios prácticos.
Dirigido aEl Curso está dirigido a desarrolladores de aplicaciones, gerentes de proyectos, administradores de sistemas, consultores técnicos, y a aquellos que tengan interés en el área.
Curso Certificación JAVA SE 8 Oracle
ContenidoCurso Certificación en Java SE 8 - Oracle Certified Associate - OCA.
Presentación.
La certificación OCA, Programador Java SE 8 cubre los fundamentos del lenguaje de programación Java SE 8 tales como el significado de la programación orientada a objetos, la sintaxis del lenguaje y los pasos para crear programas que se apoyen en la orientación de objetos para desarrollar programas básicos de la tecnología Java. Esta certificación provee un fundamento sólido para posteriores aprendizajes y certificaciones de esta tecnología.
Beneficios.
Cualifica su perfil y encuentra una puerta al mercado laboral nacional e internacional
Certificación avalada internacionalmente por Oracle University.
El curso incluye el voucher de certificación
Contenido.
Java SE 8 Fundamentals.
Duration: 5 Days
What you will learn.
This Java SE 8 Fundamentals training introduces you to object-oriented programming using the Java language. Through hands-on exercises, you'll begin to build a baseline of knowledge to propel your career in development.
Learn To:
Use Java programming language constructs to create a Java technology application.
Use decision and looping constructs and methods to dictate program flow.
Understand basic object oriented concepts such as inheritance, encapsulation, and abstraction.
Use and manipulate object references, and to write simple error handling code.
Use the new SE 8 java.time and java.time.format packages to format and print the local date and time.
Specify a data modification by passing a predicate lambda expression to the Collections class.
Benefits to You.
By enrolling in this course, you'll expand your knowledge of Java SE 8, while building your Java skill set. You'll build a solid basis in the Java programming language upon which to base continued work and training.
Audience.
Application Developers
Developer
Project Manager
System Administrator
Team Leader
Technical Administrator
Technical Consultant
Web Administrator
Course Objectives.
Write Java code that uses variables, arrays, conditional and loop constructs
Manipulate primitive numeric data and string data using Java operators
Create Java classes and use object references
Access the fields and methods of an object
Manipulate text data using the methods of the String and StringBuilder classes
Use casting without losing precision or causing errors
Declare, override, and invoke methods
Access and create static fields and methods
Use classes from the java.time and java.time.format packages to format and print the local date and time
Encapsulate a class using access modifiers and overloaded constructors
Define and implement a simple class hierarchy
Demonstrate polymorphism by implementing a Java Interface
Use a Predicate Lambda expression as the argument to a method
Handle a checked exception in a Java application
Course Topics.
What Is a Java Program?.
Introduction to Computer Programs
Key Features of the Java Language
The Java Technology and Development Environment
Running/testing a Java program
Creating a Java Main Class.
Java Classes
The main Method
Data In the Cart.
Introducing variables
Working with Strings
Working with numbers
Manipulating numeric data
Managing Multiple Items.
Working with Conditions
Working with a List of Items
Processing a list of items
Describing Objects and Classes.
Working with objects and classes
Defining fields and methods
Declaring, Instantiating, and Initializing Objects
Working with Object References
Doing more with Arrays
Introducing the NetBeans IDE
Introducing the Soccer League Use Case
Manipulating and Formatting the Data in Your Program.
Using the String Class
Using the Java API Docs
Using the StringBuilder Class
More about primitive data types
The remaining numeric operators
Promoting and casting variables
Creating and Using Methods.
Using methods
Method arguments and return values
Static methods and variables
How Arguments are Passed to a Method
Overloading a method
Using Encapsulation.
Access Control
Encapsulation
Overloading constructors
More on Conditionals.
Relational and conditional operators
More ways to use if/else constructs
Using Switch Statements
Using the NetBeans Debugger
More on Arrays and Loops.
Working with Dates
Parsing the args Array
Two-dimensional Arrays
Alternate Looping Constructs
Nesting Loops
The ArrayList class
Using Inheritance.
Overview of inheritance
Working with subclasses and superclasses
Overriding methods in the superclass
Introducing polymorphism
Creating and extending abstract classes
Using Interfaces.
Polymorphism in the JDK foundation classes
Using Interfaces
Using the List Interface
Introducing Lambda expressions
Handling Exceptions.
Handling Exceptions: An overview
Propagation of exceptions
Catching and throwing exceptions
Handling multiple exceptions and errors
Java SE.
Java SE 8 Programmer I
Exam Number: 1Z0-808 Exam Title: Java SE 8 Programmer I
Associated Certification Paths.
Passing this exam is required to earn these certifications.
Oracle Certified Associate, Java SE 8 Programmer , Oracle Certified Java Programmer, Silver SE 8 - Available only in Japan?(Oracle Certified Associate, Java SE 8 Programmer).
Exam Preparation.
Training Increases Your Chance of Passing.
Take Recommended Training Courses
Complete one of the courses below to prepare for your exam (optional):
Java SE 8 Fundamentals or
Oracle Certified Associate, Java SE 8 Programmer Certification Discount Package (On Demand)
Additional Preparation and Information.
Also available in Spanish - 1Z0-808-ESN on the Pearson VUE website.
(Spanish version of the exam has 150 minutes duration, 70 questions and 65% passing score)
Exam Preparation.
Certification Exam Prep Seminar: Java SE 8 Programmer I
Exam Prep Seminar Package: Java SE 8 Programmer I
Practice Exams: Oracle authorized practice exam from Transcender: 1Z0-808: Java SE 8 Programmer I
Sample Questions
Review Exam Topics.
Assume the following:
Missing package and import statements: If sample code do not include package or import statements, and the question does not explicitly refer to these missing statements, then assume that all sample code is in the same package, or import statements exist to support them.
No file or directory path names for classes: If a question does not state the file names or directory locations of classes, then assume one of the following, whichever will enable the code to compile and run:
- All classes are in one file
- Each class is contained in a separate file, and all files are in one directory
Unintended line breaks: Sample code might have unintended line breaks. If you see a line of code that looks like it has wrapped, and this creates a situation where the wrapping is significant (for example, a quoted String literal has wrapped), assume that the wrapping is an extension of the same line, and the line does not contain a hard carriage return that would cause a compilation failure.
Code fragments: A code fragment is a small section of source code that is presented without its context. Assume that all necessary supporting code exists and that the supporting environment fully supports the correct compilation and execution of the code shown and its omitted environment.
Descriptive comments: Take descriptive comments, such as "setter and getters go here," at face value. Assume that correct code exists, compiles, and runs successfully to create the described effect.
TOPICS.
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.
Working With Java Data Types.
Declare and initialize variables (including casting of primitive data types)
Differentiate between object reference variables and primitive variables
Know how to read or write to object fields
Explain an Object's Lifecycle (creation, "dereference by reassignment" and garbage collection)
Develop code that uses wrapper classes such as Boolean, Double, and Integer
Using Operators and Decision Constructs.
Use Java operators; use parentheses to override operator precedence
Test equality between Strings and other objects using == and equals ()
Create if and if/else and ternary constructs
Use a switch statement
Creating and Using Arrays.
Declare, instantiate, initialize and use a one-dimensional array
Declare, instantiate, initialize and use multi-dimensional arrays
Using Loop Constructs.
Create and use while loops
Create and use for loops including the enhanced for loop
Create and use do/while loops
Compare loop constructs
Use break and continue
Working with Methods and Encapsulation.
Create methods with arguments and return values; including overloaded methods
Apply the static keyword to methods and fields
Create and overload constructors; differentiate between default and user defined constructors
Apply access modifiers
Apply encapsulation principles to a class
Determine the effect upon object references and primitive values when they are passed into methods that change the values
Working with Inheritance.
Describe inheritance and its benefits
Develop code that makes use of polymorphism; develop code that overrides methods; differentiate between the type of a reference and the type of an object
Determine when casting is necessary
Use super and this to access objects and constructors
Use abstract classes and interfaces
Handling Exceptions.
Differentiate among checked exceptions, unchecked exceptions, and Errors
Create a try-catch block and determine how exceptions alter normal program flow
Describe the advantages of Exception handling
Create and invoke a method that throws an exception
Recognize common exception classes (such as NullPointerException, ArithmeticException, ArrayIndexOutOfBoundsException, ClassCastException)
Working with Selected classes from the Java API.
Manipulate data using the StringBuilder class and its methods
Create and manipulate Strings
Create and manipulate calendar data using classes from java.time.LocalDateTime, java.time.LocalDate, java.time.LocalTime, java.time.format.DateTimeFormatter, java.time.Period
Declare and use an ArrayList of a given type
Write a simple Lambda expression that consumes a Lambda Predicate expression
Exam topics in Spanish
Take Exam.
Take the Test when you're ready - Buy an Exam Voucher.
Purchase an exam voucher now and redeem it within 6 months - it's like a gift card.
Schedule your exam.
If you're ready to take your exam, schedule it now and pay directly with a credit card, or redeem a voucher you’ve purchased from Oracle. Either way, you'll schedule it through our external testing provider, PearsonVue.
After The Exam.
Within 30 minutes of completing your Oracle Certification exam, you will receive an email from Oracle notifying you that your exam results are available in CertView. If you have previously authenticated your CertView account, simply login and select the option to "See My New Exam Result Now."
Exam Details.
Duration: 150 Number of Questions: 70 Passing Score: 65% Validated Against: This exam has been written for the Java SE 8 release. Format: Multiple Choice
Un diseño orientado al aprendizaje, la práctica y la certificación.
Experiencia de aprendizaje en línea con laboratorios prácticos, diseñado específicamente para ayudar a los estudiantes a adquirir los conocimientos y habilidades que están en alta demanda en la industria de TI en el mundo real, acceso por 6 meses.
Duración:
40 horas – Modalidad presencial
Dirigido a:
Personal vinculado con áreas de T.I. de nivel técnico, tecnológico y profesional.
Profesor:
Alexis López: es consultor independiente Java/ADF. Ha sido profesor universitario de cursos relacionados con tecnologías Java y conferencista en congresos reconocidos como:
Oracle Open World, JavaOne, Campus Party, OTN y ODT Tour.
Cuenta con un título de ingeniero de sistemas y las siguientes certificaciones y reconocimientos:
Oracle Ace, Duke Choice Award
OCP Java 8,
OCPJMAD, OCPWCD
Especialista de implementación de Oracle ADF.
Líder del grupo de usuarios Java de Cali-Colombia
Forma de Pago.
Puede realizar el pago del diplomado de contado, consignando con el recibo enviado a su correo electrónico en las entidades financieras.
Con tarjeta débito o crédito en la tesorería de la Universidad, campus sur 1er Piso.
Puede optar por financiación a través de los convenios con las entidades financieras:
COOPERATIVA COMUNA
BANCOOMEVA
SUFI
COOPERATIVA FINCOMERCIO
BANCO PICHINCHA
BANCO AV-VILLAS
Descuentos.
Egresados 20%
Asociados a Coomeva 10%
Lugar.
El Diplomado en Gestión de Tecnologías de la Información y BCI, se llevará a cabo en las instalaciones de la Universidad Cooperativa de Colombia, campus Sur
Horarios.
Viernes 6:00 a 10:00 p.m.
Sábados 8:00 a 12:00 p.m