An open API service indexing awesome lists of open source software.

https://github.com/eugenia1984/egg-fs-java

I am studying Full Stack Developer ( Java) in Egg, here you can see theory and practise
https://github.com/eugenia1984/egg-fs-java

backend frontend java

Last synced: 3 days ago
JSON representation

I am studying Full Stack Developer ( Java) in Egg, here you can see theory and practise

Awesome Lists containing this project

README

          

ENGLISH

# Egg Full Stack Java

I am studying Full Stack Developer (Java) in Egg

## What I did 🚀

I added one file for each unit of exercises I did.

## Content 🚀

In each unit you will see: theory, questions to understand theory and exercises.

* [**Unit 1**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia1) : PseInt : we start with pseudocode by looking at the following topics: programming | programming language | algorithm (writing, action section, sequential primitives) | program and its elements: reserved words, identifiers, variables and constants, data type: integer, real, character, logical, String | IDE | encoding | testing and debugging | operators: relational ( >,> =, <, <=, =, <> ) . logical ( conjunction (Y, and, &&), disjunction (O, or, ||), negation (NO, not) ) , algebraic ( (arithmetic): addition (+), subtraction (-), multiplication (*), division (/), power (^), modulus (% or MOD) ) | Priority rules

* [**Unit 2**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia2) : PseInt : Sequential structure | Selective or Decision Structure ( Simple Condition , Double Condition , Multiple Condition ) | Repetitive Structure ( While , Do While , Structure For ).

* [**Unit 3**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia3) : the theory of Subprograms and the exercices.

* [**Unit 4**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia4) : **arrays**: one-dimensional (vectors), two-dimensional (matrices) and multidimensional. We also saw **matrices**. I also added the excersice I did in order to practice.

* [**Unit 5**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia5-java) : **Java** , you will find the pdf with the theory (compiler; source file; program structure; comments; packages; classes; methods; main () method; sentences; reserved words; identifier; variables and constants; data type; operators; console write input and output; control structures: if / else and switch; repetitive structures: while, di / while, for; jump statements: break and continue; utility classes: String , Math; applets and functions; vectors and matrices) and exercises performed in .java files.

* [**Unit 6**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia6-java-POO) : **object orientated programming**

* [**Unit 7**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia7-java-colecciones) : **collections**

* [**Unit 8**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia8_relaciones) : **Relations between classes** : bidirectional / unidirectional association, aggregation, composition, relations in code, UML, class diagram, relations between classes

* [**Unit 9**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia9_herencia) : **Inheritance**

* [**Unit 10**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia10_excepciones) : **Exceptions**

* [**Unit 11**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia11_base_da_datos) : **Data Base**

* [**Unit 12**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia12_jdbc): **JDBC**

* [**Unit 13**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia13_jpa): **JPA**

* [**Unit 14**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia14_git): **GIT** & **GITHUB**

* [**Unit 15**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia15_html_css): **HTML5** & **CSS3**

* [**Unit 16**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia16_spring_boot): **Spring Boot**


---

## Builded with 🛠️

**PseInt** , **Java**

---

## Please: 🎁

* Share this proyect with others 📢
* Invite a beer 🍺 or a coffee ☕ to someone of the team.
* Thanks a lot 🤓.

---

## Notes
I appreciate your interest in this Project

⌨️ with ❤️ by [María Eugenia Costa](https://github.com/eugenia1984) 😊 and follow me at [LinkedIn - maria-eugenia-costa](https://www.linkedin.com/in/maria-eugenia-costa/)

---

ESPAÑOL

# Egg Full Stack Java

Estoy estudiando Full Stack en **Java** en **Egg**.

---

## ¿ Qué hice ? 🚀

Cree una carpeta por cada unidad ( guía de ejercicios)

---

## Contenido 🚀

En cada carpeta van a encontrar la teoría, las preguntas de aprendizaje y los ejercicios de práctica.

* [**Unidad 1**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia1) : PseInt : programación | lenguaje de programación | algoritmo (escritura, sección de acciones, primitivas secuenciales) | programa: sus elementos: palabras reservadas, identificadores, variables y constantes, tipo de datos ( entero , real , carácter , lógico, cadena ) | IDE | codificación | prueba y depuración | operadores:
relacionales: >, >=, < , <=, =, <> ; lógicos: conjunción (Y, and, &&), disyunción (O, or, ||), negación (NO, not) ; algebraicos (aritméticas): suma (+), resta (-), multiplicación (*), división (/), potenciación (^), módulo (% o MOD) | Reglas de prioridad:

* [**Unidad 2**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia2) : PseInt : Estructura Seceuncial | Estructura Selectiva o de Decisión ( Condición Simple , Condición Doble , Condición Múltiple ) | Estructura Repetitiva (Mientras , Hacer Mientras , Estructura Para ) .

* [**Unidad 3**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia3) : la teoría de **subprogramas** y los ejercicios de practica.

* [**Unidad 4**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia4) : **arreglos**: unidimensionales (vectores) , bidimensionales (matrices) y multidimencionales. También vimos **matrices**. Los ejercicios realizados.

* [**Unidad 5**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia5-java) : **Teoría Java**: compilador ; archivo fuente; estructura de un programa; comentarios; paquetes; clases; métodos; método main(); sentencias; palabras reservadas; identificador; variables y constantes; tipo de datos; operadores; input y output de escritura por consola; estructuras de control: if/else y switch; estructuras repetitivas: while, di/while, for; sentencias de salto: break y continue; clases de utilidad: String, Math; subprogramas y funciones ; vectores y matrices.

* [**Unidad 6**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia6-java-POO) : **Programacion Orientada a Objetos**

* [**Unidad 7**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia7-java-colecciones) : **Colecciones**

* [**Unidad 8**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia8_relaciones) : **Relaciones entre clases**: asociación bidireccional / unidireccional , agregación, composición, relaciones en cósigo, UML, diagrama de clases, relaciones entre clases

* [**Unidad 9**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia9_herencia) : **Herencia**

* [**Unidad 10**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia10_excepciones) : **Excepciones**

* [**Unidad 11**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia11_base_da_datos) : **Base de Datos**

* [**Unidad 12**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia12_jdbc): **JDBC**

* [**Unidad 13**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia13_jpa): **JPA**

* [**Unidad 14**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia14_git): **GIT** & **GITHUB**

* [**Unidad 15**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia15_html_css): **HTML5** & **CSS3**

* [**Unidad 16**](https://github.com/eugenia1984/Egg-FS-java/tree/master/guia16_spring_boot): **Spring Boot**



---

## Construido con 🛠️

**PseInt** , **Java**

---

## Por favor: 🎁

* Comparte este proyecto con otros 📢

* Invita una cerveza 🍺 o un café ☕ a alguien del equipo

* Muchas gracias 🤓.

---

## Notas:

Aprecio tu interes en este proyecto

⌨️ con ❤️ por [María Eugenia Costa](https://github.com/eugenia1984) 😊 y seguime en [LinkedIn - maria-eugenia-costa](https://www.linkedin.com/in/maria-eugenia-costa/)

---