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

13 lines
254 B
Text
Raw Normal View History

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