mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-05-06 14:19:38 +02:00
Refactor repo structure
This commit is contained in:
parent
36ac339086
commit
8fc89fbc03
1732 changed files with 3812 additions and 67 deletions
1
Data/Questions/ingsw/0721_17/correct.txt
Normal file
1
Data/Questions/ingsw/0721_17/correct.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Ad ogni istante di tempo della forma 1 + 4*k (k = 0, 1, 2, 3, ...), x vale "true".
|
13
Data/Questions/ingsw/0721_17/quest.txt
Normal file
13
Data/Questions/ingsw/0721_17/quest.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
Si consideri il seguente modello Modelica.
|
||||
<pre>
|
||||
class System
|
||||
Boolean x;
|
||||
initial equation
|
||||
x = false;
|
||||
equation
|
||||
when sample(0, 2) then
|
||||
x = not (pre(x));
|
||||
end when;
|
||||
end System;
|
||||
</pre>
|
||||
Quale delle seguenti affermazioni vale per la variabile booleana x ?
|
1
Data/Questions/ingsw/0721_17/wrong1.txt
Normal file
1
Data/Questions/ingsw/0721_17/wrong1.txt
Normal file
|
@ -0,0 +1 @@
|
|||
At time instants of form 1 + 4*k (with k = 0, 1, 2, 3, ...) x takes value "false".
|
1
Data/Questions/ingsw/0721_17/wrong2.txt
Normal file
1
Data/Questions/ingsw/0721_17/wrong2.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Ad ogni istante di tempo della forma 3 + 4*k (k = 0, 1, 2, 3, ...), x vale "true".
|
Loading…
Add table
Add a link
Reference in a new issue