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

13 lines
No EOL
254 B
Text

Si consideri il seguente modello Modelica.
<html>
class System
Boolean x;
initial equation
x = false;
equation
when sample(0, 2) then
x = not (pre(x));
end when;
end System;
</html>
Quale delle seguenti affermazioni vale per la variabile booleana x ?