Certificación Java SE 7 Programmer I - Auribox … › cursos-java › temarios › ...CD...

2
CENTRO DE CAPACITACIÓN ESPECIALIZADO EN TECNOLOGÍAS DE LA INFORMACIÓN Zona Rosa - Nápoles #49 Piso 4, Col. Juárez, C.P. 06520, Del. Cuauhtémoc, Ciudad de México Duración del curso: 36 horas Requerimientos previos: Conocimientos de programación orientada a objetos. El curso Incluye: CD autorizado por Oracle con pruebas y exámen de simulación CD con cuestionarios y pruebas 1 Voucher para exámen de certificación Datos del Exámen: Tipo de certificación: Oracle Certified Associate, Java SE 7 Programmer Clave del Exámen: 1Z0-803 Versión de Java: JSE 7 Total de Preguntas: 70 Duración del exámen: 120 minutos Formato: Opción Múltiple Porcentaje para acreditar: 63% Garantia: En caso de no acreditar el exámen, podrás inscribirte nuevamente al curso sin costo (No incluye voucher para exámen). TEMARIO Java Basics Define the scope of variables Define the structure of a Java class Create executable Java applications with a main method Import other Java packages to make them accessible in your code Working With Java Data Types Declare and initialize variables Differentiate between object reference variables and primitive variables Read or write to object fields Explain an Object's Lifecycle (creation, "dereference" and garbage collection) Call methods on objects Manipulate data using the StringBuilder class and its methods Creating and manipulating Strings Certificación Java SE 7 Programmer I

Transcript of Certificación Java SE 7 Programmer I - Auribox … › cursos-java › temarios › ...CD...

Page 1: Certificación Java SE 7 Programmer I - Auribox … › cursos-java › temarios › ...CD autorizado por Oracle con pruebas y exámen de simulación CD con cuestionarios y pruebas

CENTRO DE CAPACITACIÓN ESPECIALIZADO EN TECNOLOGÍAS DE LA INFORMACIÓN

Zona Rosa - Nápoles #49 Piso 4, Col. Juárez, C.P. 06520, Del. Cuauhtémoc, Ciudad de México

Duración del curso: 36 horas

Requerimientos previos: Conocimientos de programación orientada a objetos.

El curso Incluye:CD autorizado por Oracle con pruebas y exámen de simulaciónCD con cuestionarios y pruebas1 Voucher para exámen de certificación

Datos del Exámen:Tipo de certificación: Oracle Certified Associate, Java SE 7 ProgrammerClave del Exámen: 1Z0-803Versión de Java: JSE 7Total de Preguntas: 70Duración del exámen: 120 minutosFormato: Opción MúltiplePorcentaje para acreditar: 63%

Garantia: En caso de no acreditar el exámen, podrás inscribirte nuevamente al curso sin costo (No incluye voucher para exámen).

TEMARIO

Java BasicsDefine the scope of variablesDefine the structure of a Java classCreate executable Java applications with a main methodImport other Java packages to make them accessible in your codeWorking With Java Data Types

Declare and initialize variablesDifferentiate between object reference variables and primitive variablesRead or write to object fieldsExplain an Object's Lifecycle (creation, "dereference" and garbage collection)Call methods on objectsManipulate data using the StringBuilder class and its methodsCreating and manipulating Strings

Certificación Java SE 7 Programmer I

Page 2: Certificación Java SE 7 Programmer I - Auribox … › cursos-java › temarios › ...CD autorizado por Oracle con pruebas y exámen de simulación CD con cuestionarios y pruebas

CENTRO DE CAPACITACIÓN ESPECIALIZADO EN TECNOLOGÍAS DE LA INFORMACIÓN

Zona Rosa - Nápoles #49 Piso 4, Col. Juárez, C.P. 06520, Del. Cuauhtémoc, Ciudad de México

Using Operators and Decision ConstructsUse Java operatorsUse parenthesis to override operator precedenceTest equality between Strings and other objects using == and equals ()Create if and if/else constructsUse a switch statement

Creating and Using ArraysDeclare, instantiate, initialize and use a one-dimensional arrayDeclare, instantiate, initialize and use multi-dimensional arrayDeclare and use an ArrayList

Using Loop ConstructsCreate and use while loopsCreate and use for loops including the enhanced for loopCreate and use do/while loopsCompare loop constructsUse break and continue

Working with Methods and EncapsulationCreate methods with arguments and return valuesApply the static keyword to methods and fieldsCreate an overloaded methodDifferentiate between default and user defined constructorsCreate and overload constructorsApply access modifiersApply encapsulation principles to a classDetermine the effect upon object references and primitive values when they are passed into methods that change the values

Working with InheritanceImplement inheritanceDevelop code that demonstrates the use of polymorphismDifferentiate between the type of a reference and the type of an objectDetermine when casting is necessaryUse super and this to access objects and constructorsUse abstract classes and interfaces

Handling ExceptionsDifferentiate among checked exceptions, RuntimeExceptions and ErrorsCreate a try-catch block and determine how exceptions alter normal program flowDescribe what Exceptions are used for in JavaInvoke a method that throws an exceptionRecognize common exception classes and categories