This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| group: Caso 2 | |
| Cli = { | |
| DNI:number, Nya:string , Sexo:string, Edad:number, Dir:string , Tel:number, Zona:string | |
| 38498425 , 'Rita Pérez' , 'F' , 60 , 'Calle 123', 123 , 'Rivadavia' | |
| 34567890 , 'Juan Páez' , 'M' , 24 , 'Calle 234', 876 , 'Rivadavia' | |
| 29875321 , 'Martín Tents' , 'M' , 47 , 'Calle 567', 999 , 'Capital' | |
| 12345678 , 'María Hollens', 'F' , 19 , 'Calle 222', 254 , 'Santa Lucía' | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| group: Ejercicio E | |
| R = { | |
| M:string, O:string | |
| 'A' , 'X' | |
| 'B' , 'Y' | |
| 'A' , 'Z' | |
| 'B' , 'X' | |
| 'C' , 'Y' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| group: Ejercicio D | |
| X = { | |
| P:number, Q:string, R:number | |
| 10 , 'a' , 5 | |
| 15 , 'b' , 8 | |
| 25 , 'a' , 6 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| group:Recursos Humanos | |
| regions = { | |
| region_id:number, region_name:string | |
| 1 , 'Europe' | |
| 2 , 'Americas' | |
| 3 , 'Asia' | |
| 4 , 'Middle East and Africa' | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| group: Ejemplo | |
| Persona = { | |
| dni:string, nom:string , sexo:string, dir:string, tel:string , zona:string | |
| '1' , 'Juan' , 'M' , '23' , 'Calle 123', 'Rivadavia' | |
| '2' , 'Pablo' , 'M' , '21' , 'Calle 544', 'Capital' | |
| '3' , 'Florencia', 'F' , '18' , 'Calle 877', 'Chimbas' | |
| } | |
| Deporte = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| group: Ejemplo | |
| Alumno = { | |
| dni, nombre, localidad | |
| 1, 'Juan', 'Capital' | |
| 2, 'Matías', 'Rivadavia' | |
| 3, 'Pablo', 'Santa Lucía' | |
| } |