Cursos   Maestrías   Posgrados   Licenciaturas   Capacitación   Cursos Gratis    
  Más buscado | Comparte esta página  
desplegar Mi lista: 0 cursos
Home Cursos Computación y telecomunicaciones Cursos Programación y análisis Cursos Java

Sjcpw Taller de Certificación Como Programador Java

en Qos Labs de México, S.A. de C.V. (México)

Taller Presencial

Lugar:

México D.F.

Precio:

$390 (USD) - ($5,329) IVA inc.

Duración:

28 Meses

Inicio:

15/12/2008 calendario
ver temario

Requisitos:

Contar con 6 meses o más de experiencia programando en Java Haber estudiado temas del examen utilizando ... ver más

Pedir información gratuitamente

Para qué te prepara:

En este taller usted podrá reforzar sus bases teóricas, obtener las habilidades y estrategias necesarias para acreditar de forma exitosa el examen de certificación. Identificará cómo está estructurado el examen de certificación los temas que incluye las preguntas tipo a las que se enfrentará al momento de presentar su examen

Más cursos Tipo de Curso

Temática
Lugar
 

Más información

Contacta directamente y sin compromiso con
Qos Labs de México, S.A. de C.V.
Debes de rellenar correctamente todos los datos de este formulario para que podamos enviarlo al centro educativo.
Hemos marcado en rojo aquellos datos incompletos y/o erróneos.
* Datos obligatorios
Al presionar 'Enviar solicitud / Ver Teléfono' te estás dando de alta y aceptando las reglas de uso de emagister.com.mx , y política de protección de datos y privacidad de Emagister.
Deseo recibir el boletín personalizado de cursos (duración máx. 15 días)

¿quedan plazas?
¿cómo inscribirse?
¿más detalles?

El responsable del curso recibe de forma instantánea esta solicitud.

Respuesta:
:| :) ;)
Normal Rápida Muy rápida
 

Detalles del curso

Tipo Taller Duración 28 Meses
Método / lugar contactar con el responsable Presencial en México D.F. dónde
Dirigido a Este taller está dirigido a todas aquellas personas interesadas en presentar la certificación Sun Certified Programmer for the Java 2 Platform, Standard Edition 5.0
Para qué te prepara En este taller usted podrá reforzar sus bases teóricas, obtener las habilidades y estrategias necesarias para acreditar de forma exitosa el examen de certificación. Identificará cómo está estructurado el examen de certificación los temas que incluye las preguntas tipo a las que se enfrentará al momento de presentar su examen
Requisitos
Contar con 6 meses o más de experiencia programando en Java Haber estudiado temas del examen utilizando alguna referencia bibliografica de Java 1.5.
Precio $390 (USD) - ($5,329) IVA inc.
infórmate directamente de cómo matricularte, plazas disponibles ...

Cursos de Java (de otros centros)

 
Taller de Java Orientado a la Productividad (1.5)
Aplicaciones Totales en Línea. Atl
Distrito Federal - $5,000 IVA inc.
Atención garantizada
 
Jsp (Java Server Pages)
Escuelaweb
Distrito Federal - $4,995 IVA inc.  (Beca)
Atención garantizada
 
Java Programming Fundamentals Curso
New Horizons México D.F.
Distrito Federal - $8,000 IVA inc.  (Beca)
Atención garantizada
 
Sun Certified Java Programming
Centro Netec S.A.
Distrito Federal - $3,295 IVA inc.
Atención garantizada
 
Enterprise Java Beans H8320s
Compueducación
Distrito Federal - Precio: A Consultar
Atención garantizada
« compara los cursos seleccionados

Temario

Sjcpw Taller de Certificación Como Programador Java
Temario
Section 1: Fundamental Object-Oriented Concepts
·         Describe, compare, and contrast primitives (integer, floating point, boolean, and character), enumeration types, and objects.
·         Describe, compare, and contrast concrete classes, abstract classes, and interfaces, and how inheritance applies to them.
·         Describe, compare, and contrast class compositions, and associations (including multiplicity: (one-to-one, one-to-many, and many-to-many), and association navigation.
·         Describe information hiding (using private attributes and methods), encapsulation, and exposing object functionality using public methods; and describe the JavaBeans conventions for setter and getter methods.
·         Describe polymorphism as it applies to classes and interfaces, and describe and apply the "program to an interface" principle.
Section 2: UML Representation of Object-Oriented Concepts
·         Recognize the UML representation of classes, (including attributes and operations, abstract classes, and interfaces), the UML representation of inheritance (both implementation and interface), and the UML representation of class member visibility modifiers (-/private and +/public).
·         Recognize the UML representation of class associations, compositions, association multiplicity indicators, and association navigation indicators.
Section 3: Java Implementation of Object-Oriented Concepts
·         Notes: code examples may use the 'new' operator.
·         Develop code that uses primitives, enumeration types, and object references, and recognize literals of these types.
·         Develop code that declares concrete classes, abstract classes, and interfaces, code that supports implementation and interface inheritance, code that declares instance attributes and methods, and code that uses the Java access modifiers: private and public.
·         Develop code that implements simple class associations, code that implements multiplicity using arrays, and recognize code that implements compositions as opposed to simple associations, and code that correctly implements association navigation.
·         Develop code that uses polymorphism for both classes and interfaces, and recognize code that uses the "program to an interface" principle.
Section 4: Algorithm Design and Implementation
·         Describe, compare, and contrast these three fundamental types of statements: assignment, conditional, and iteration, and given a description of an algorithm, select the appropriate type of statement to design the algorithm.
·         Given an algorithm as pseudo-code, determine the correct scope for a variable used in the algorithm, and develop code to declare variables in any of the following scopes: instance variable, method parameter, and local variable.
·         Given an algorithm as pseudo-code, develop method code that implements the algorithm using conditional statements (if and switch), iteration statements (for, for-each, while, and do-while), assignment statements, and break and continue statements to control the flow within switch and iteration statements.
·         Given an algorithm with multiple inputs and an output, develop method code that implements the algorithm using method parameters, a return type, and the return statement, and recognize the effects when object references and primitives are passed into methods that modify them.
·         Given an algorithm as pseudo-code, develop code that correctly applies the appropriate operators including assignment operators (limited to: =, +=, -=), arithmetic operators (limited to: +, -, *, /, %, ++, --), relational operators (limited to: <, <=, >, >=, ==, !=), logical operators (limited to: !, &&, ||) to produce a desired result. Also, write code that determines the equality of two objects or two primitives.
·         Develop code that uses the concatenation operator (+), and the following methods from class String: charAt, indexOf, trim, substring, replace, length, startsWith, and endsWith.
Section 5: Java Development Fundamentals
·         Describe the purpose of packages in the Java language, and recognize the proper use of import and package statements.
·         Demonstrate the proper use of the "javac" command (including the command-line options: -d and –classpath), and demonstrate the proper use of the "java" command (including the command-line options: -classpath, -D and –version).
·         Describe the purpose and types of classes for the following Java packages: java.awt, javax.swing, java.io, java.net, java.util.
Section 6: Java Platforms and Integration Technologies
·         Distinguish the basic characteristics of the three Java platforms: J2SE, J2ME, and J2EE, and given a high-level architectural goal, select the appropriate Java platform or platforms.
·         Describe at a high level the benefits and basic characteristics of RMI.
·         Describe at a high level the benefits and basic characteristics of JDBC, SQL, and RDBMS technologies.
·         Describe at a high level the benefits and basic characteristics of JNDI, messaging, and JMS technologies.
Section 7: Client Technologies
·         Describe at a high level the basic characteristics, benefits and drawbacks of creating thin-clients using HTML and JavaScript and the related deployment issues and solutions.
·         Describe at a high level the basic characteristics, benefits, drawbacks, and deployment issues related to creating clients using J2ME midlets.
·         Describe at a high level the basic characteristics, benefits, drawbacks, and deployment issues related to creating fat-clients using Applets.
·         Describe at a high level the basic characteristics, benefits, drawbacks, and deployment issues related to creating fat-clients using Swing.
Section 8: Server Technologies
·         Describe at a high level the basic characteristics of: EJB, servlets, JSP, JMS, JNDI, SMTP, JAX-RPC, Web Services (including SOAP, UDDI, WSDL, and XML), and JavaMail.
·         Describe at a high level the basic characteristics of servlet and JSP support for HTML thin-clients.
·         Describe at a high level the use and basic characteristics of EJB session, entity and message-driven beans.
·         Describe at a high level the fundamental benefits and drawbacks of using J2EE server-side technologies, and describe and compare the basic characteristics of the web-tier, business-tier, and EIS tier.
ver todo el temario

consulta

más detalles del temario directamente a Qos Labs de México, S.A. de C.V..

Pedir información gratuitamente
infórmate directamente de cómo matricularte, plazas disponibles ...
 

Instalaciones y fechas



Dónde México D.F., San Lorenzo1009-200 Col. Del Valle ver mapa
Cuándo Inicio: 15/12/2008 Fin: 26/12/2008 ver calendario
 
infórmate directamente de cómo matricularte, plazas disponibles ...
 

Exalumnos

 
Opiniones
 
¿Has hecho este curso?

Opina y ayuda a miles de usuarios

opiniones

de usuarios que han realizado
el curso.
infórmate directamente de cómo matricularte, plazas disponibles ...
 

Sobre Qos Labs de México, S.A. de C.V.

Descripción del centro
Nuestro Centro de Educación Autorizado SUN Microsystems (A.S.E.C.) imparte cursos desde 1997 y se ha caracterizado por ofrecer una cultura de continuo avance; desde capacitación básica, hasta altamente especializada para desarrolladores y administradores de sistemas y redes experimentados que desean ampliar su conocimiento y ponerlo en práctica inmediatamente. Nos especializamos en la entrega de cursos con la información más actualizada disponible. Todos nuestros instructores son especialistas en las plataformas que imparten, están certificados y disfrutan del proceso de aprendizaje. Nuestros programas educacionales se encuentran estructurados en tres áreas tecnológicas alrededor de los Web Services.

Todos los cursos

de Qos Labs de México, S.A. de C.V. en emagister.

Ver lista de cursos

infórmate directamente de cómo matricularte, plazas disponibles ...

Formación relacionada con Java

 
Páginas internacionales: España  |  Italia  |  Francia  |  México  |  Alemania  |  Reino Unido  |  Japón  |  Argentina

Palabras relacionadas con los cursos que estás viendo: curso desarrollo web java curso de xml java cursos de java para web curso de java oracle curso java aplicaciones web cursos web services java curso de j2ee java curso java linea curso de desarrollo aplicaciones web tecnologias java curso de certificacion java

emagister cumple la Ley Orgánica 15/1999 de 13 de diciembre, de Protección de datos de Carácter Personal, y posee el código de inscripción nº 2002010053 del Registro General de la Agencia de Protección de Datos. Copyright © 1999/2000 - Grupo Intercom - Todos los derechos