mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-14 12:46:15 +01:00
11 lines
No EOL
239 B
Text
11 lines
No EOL
239 B
Text
Si consideri il seguente modello Modelica.
|
|
class System
|
|
Boolean x;
|
|
initial equation
|
|
x = false;
|
|
equation
|
|
when sample(0, 2) then
|
|
x = not (pre(x));
|
|
end when;
|
|
end System;
|
|
Quale delle seguenti affermazioni vale per la variabile booleana x ? |