so-un-bot/Ingegneria del Software/0621_10/quest.txt
2022-11-14 16:15:16 +01:00

13 lines
No EOL
248 B
Text

Si consideri il seguente modello Modelica:
<html>
class System
Integer x;
initial equation
x = 0;
equation
when sample(0, 2) then
x = 1 - pre(x);
end when;
end System;
</html>
Quale delle seguenti affermazioni è vera per la variabile intera x?