GSI 11 Flashcards

1
Q

Listado tecnologías JAVA

A
  • Spring: FW Back
  • Hibernate: ORM de JPA
  • JAX-WS: API SOAP
  • JAX-RS: API REST
  • JPA: API Persistencia
  • JMS: API Mensajería
  • JTA: API Transacciones
  • JNDI: API Directorio
  • JAXP: API Parsing XML
  • Junit: Pruebas
  • Eclipse: IDE
  • IntelliJ: IDE
  • NetBeans: IDE
  • JRE: Maquina Virtual Java + librería base
  • MAVEN: Automatizacion construcción
  • DOM: API JAXP-Tree
  • SAX: API JAXP-Events
  • JAXB: Negocio
  • XSLT: API JAXP-Transformacsion XML
  • XSLFO: API JAXP-Transformacion PDF
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Websphere (IBM)

Tipo

A

Servidor app Java Full JEE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Weblogic

Tipo

A

Servidor app Java Full JEE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

JBoss

Tipo

A

Servidor app Java Full JEE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Wildfly

Tipo

A

Servidor app Java Full JEE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Tomcat (Apache) y Jetty (Eclipse)

Tipo

A

JEE Web Profile

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Servidores web/Proxy

A
  • Apache
  • Nginx
  • IIS
  • Squid
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

MongoDB

Tipo

A

NoSQl documental

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

HBase

Tipo

A

NoSQL columnas

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Cassandra

Tipo

A

NoSQL columnas

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

OrientDB

Tipo

A

Multimodelo

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Redis

Tipo

A

NoSQL clave-valor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Zimbra

A

Servidor de correo

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Productos gestión de red

A
  • Nagios
  • Zabbix
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Productos gestión de la configuración

A
  • Ansible
  • Chef
  • Puppet
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Productos gestion incidencias / ticketing

A

Jira

17
Q

Productos control de versiones

A
  • Git: Distribuido
  • SVN: Centralizado
  • Mercurial: Distribuido
  • CVS: Centralizado
  • Bitkeeper: Distribuido
18
Q

Productos gestión de contenidos

A
  • Drupal: CMS
  • Moodle: LMS (formación)
  • Magento: CMS (eComercio)
19
Q

Algoritmos criptográficos

A

Simétricos:
* AES
* RC4/RC5
* 3DES
* SERPENT
* BLOWFISH
* IDEA

Asimétricos
* RSA
* DH
* DSA
* EIGamal
* ECC

Otros
* MD5: MAC - 128 bits
* SHA-1: MAC-160 bits
* BLAKE2: MAC
* Argon2: Hashing con salt
* Bcrypt: Hashing con salt
* Chacha20:Simétrico
* Poly1350: MAC-128 bits

20
Q

Tipos de patrones de diseño - GoF (Gang of four)

A

Patrones creacionales: Proporcionan mecanismos de creación de objetos que incrementan la flexibilidad y la reutilización de código existente.
1. Factory method
2. Abstract factory
3. Builder
4. Prototype
5. Singleton

Patrones estructurales: Explican cómo ensamblar objetos y clases en estructuras más grandes a la vez que se mantiene la flexibilidad y eficiencia de la estructura.
1. Adapter
2. Bridge
3. Composite
4. Decorator
5. Facade
6. Flyweight
7. Proxy
Patrones de comportamiento: Se encargan de una comunicación efectiva y la asignación de responsabilidades entre objetos.
1. Chain of responsability
2. Command
3. Iterator
4. Mediator
5. Memento
6. Observer
7. State
8. Strategy
9. Template method
10. Visitor