Downloaded 0721 questions

This commit is contained in:
Federico Pizzari 2022-11-15 14:27:16 +01:00
parent eb8ea2909c
commit 935d4532aa
162 changed files with 1435 additions and 2 deletions

1
0721_17/correct.txt Normal file
View file

@ -0,0 +1 @@
Ad ogni istante di tempo della forma 1 + 4*k (k = 0, 1, 2, 3, ...), x vale "true".

11
0721_17/quest.txt Normal file
View file

@ -0,0 +1,11 @@
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 ?

1
0721_17/wrong1.txt Normal file
View file

@ -0,0 +1 @@
At time instants of form 1 + 4*k (with k = 0, 1, 2, 3, ...) x takes value "false".

1
0721_17/wrong2.txt Normal file
View file

@ -0,0 +1 @@
Ad ogni istante di tempo della forma 3 + 4*k (k = 0, 1, 2, 3, ...), x vale "true".