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
9
Data/Questions/ingsw/0210_46/correct.txt
Normal file
9
Data/Questions/ingsw/0210_46/correct.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
block SysArch
|
||||
DB db_c;
|
||||
S1 s1_c;
|
||||
S2 s2_c;
|
||||
connect(db_c.input[1], s1_c.output);
|
||||
connect(db_c.output[1], s1_c.input);
|
||||
connect(db_c.input[2], s2_c.output);
|
||||
connect(db_c.output[2], s2_c.input);
|
||||
end SysArch
|
4
Data/Questions/ingsw/0210_46/quest.txt
Normal file
4
Data/Questions/ingsw/0210_46/quest.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
img=https://unspectacular-subdi.000webhostapp.com/0210_domanda_46.png
|
||||
Si consideri la seguente architettura software:
|
||||
|
||||
Quale dei seguenti modelli Modelica meglio la rappresenta ?
|
9
Data/Questions/ingsw/0210_46/wrong1.txt
Normal file
9
Data/Questions/ingsw/0210_46/wrong1.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
block SysArch
|
||||
DB db_c;
|
||||
S1 s1_c;
|
||||
S2 s2_c;
|
||||
connect(db_c.input[1], s2_c.output[1]);
|
||||
connect(db_c.output[1], s2_c.input[1]);
|
||||
connect(s1_c.input[2], s2_c.output[2]);
|
||||
connect(s1_c.output[2], s2_c.input[2]);
|
||||
end SysArch
|
9
Data/Questions/ingsw/0210_46/wrong2.txt
Normal file
9
Data/Questions/ingsw/0210_46/wrong2.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
block SysArch
|
||||
DB db_c;
|
||||
S1 s1_c;
|
||||
S2 s2_c;
|
||||
connect(db_c.input[1], s1_c.output[1]);
|
||||
connect(db_c.output[1], s1_c.input[1]);
|
||||
connect(s1_c.input[2], s2_c.output[2]);
|
||||
connect(s1_c.output[2], s2_c.input[2]);
|
||||
end SysArch
|
Loading…
Add table
Add a link
Reference in a new issue