so-un-bot/Ingegneria del Software/0621_10/quest.txt

13 lines
248 B
Text
Raw Normal View History

2022-11-14 16:30:34 +01:00
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?