Diferencia entre revisiones de «Final 09/03/2017 (Paradigmas)»
Sin resumen de edición |
Sin resumen de edición |
||
Línea 5: | Línea 5: | ||
b) <math> \exists M \in \lambda^{bn}, \ \emptyset \vdash M : \sigma </math> es derivable, y hay un valor <math> V </math> tal que <math> fix \ fix \ M \twoheadrightarrow V </math> y <math> fix \ M \twoheadrightarrow V </math> | b) <math> \exists M \in \lambda^{bn}, \ \emptyset \vdash M : \sigma </math> es derivable, y hay un valor <math> V </math> tal que <math> fix \ fix \ M \twoheadrightarrow V </math> y <math> fix \ M \twoheadrightarrow V </math> | ||
2. Sea M un | 2. Sea <math> M <\math> un término tal que <math> \emptyset \vdash M : \sigma </math>, sea <math> W(ERASE(M)) = \Gamma \vdash M' : \rho </math>, decidir si es posible que: | ||
a. | a. <math> \sigma \neq \rho </math> | ||
b. | b. <math> \sigma = \rho, \ M \neq M' </math> | ||
3. Sea un lenguaje orientado a objetos donde no se permite sobrecarga, decidir si las siguientes situaciones son admitidas por el sistema de tipos o no. Justificar. | 3. Sea un lenguaje orientado a objetos donde no se permite sobrecarga, decidir si las siguientes situaciones son admitidas por el sistema de tipos o no. Justificar. |
Revisión del 17:40 31 ago 2020
1. Para cada afirmación decidir si es verdadera o falsa y justificar:
a) término M , si es derivable, entonces existe un valor tal que
b) es derivable, y hay un valor tal que y
2. Sea Error al representar (función desconocida «\math»): {\displaystyle M <\math> un término tal que <math> \emptyset \vdash M : \sigma } , sea , decidir si es posible que:
a.
b.
3. Sea un lenguaje orientado a objetos donde no se permite sobrecarga, decidir si las siguientes situaciones son admitidas por el sistema de tipos o no. Justificar.
a) Se sobrescribe el método de una clase y se reemplaza el tipo del argumento por un subtipo del tipo que tenía en la superclase.
b) Se tiene un atributo de tipo ref t (es un atributo mutable), se lo sobrescribe en una subclase por un tipo ref s, donde s es subtipo de t.
4. Decidir si es verdadero o falso:
a. {P(x,y)} y {P(y, f(y))} no unifican.
b. para_todo(x), para_todo(y) (P(x,f(x)) ^ ~P(y,f(y))) es una forma normal de Skolem de para_todo(x), para_todo(y), existe(z) (P(x,z) ^ ~P(y,z)).
c. Sea un programa de Prolog con unicas clausulas: "P(X,Y) :- q(X). P(X,Y) :- q(Y)", la expresion "q(X), ~q(Y)" aparece en el arbol de busqueda de Prolog de "P(X,X), ~P(Y,Y)".
5. Sea un programa en Prolog que redefine el "not" como:
not(G) :- call(G), fail, !.
not(G).
Comparar el resultado de evaluar not(P) si el arbol de resolucion SLD de P es:
a. finito y sin solución
b. finito y con solución
c. infinito y con solución
6. Seguimiento en Smalltalk