|
|
|
Quizzes: An Individual Assignment
|
|
|
|
==========================================
|
|
|
|
|
|
|
|
In this assignment you need to complete a number of simple quizzes where questions pertain to lectures' content.
|
|
|
|
We use an automated quizz system based on personal GIT repositories, that will be created for each individual registered student.
|
|
|
|
|
|
|
|
The scope of the quizzes covers Lectures 3 to 11 (using numbering of the video lectures).
|
|
|
|
|
|
|
|
How to Submit
|
|
|
|
------------
|
|
|
|
|
|
|
|
Answers should be given in YAML Format, where you modify the `choice: x` lines:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
example:
|
|
|
|
- question: What is the color of the sky?
|
|
|
|
choices:
|
|
|
|
a: Green
|
|
|
|
b: Blue
|
|
|
|
c: Red
|
|
|
|
d: Yellow
|
|
|
|
choice: b
|
|
|
|
lecture 01:
|
|
|
|
- question: Is an appliance a robot?
|
|
|
|
choices:
|
|
|
|
a: Yes.
|
|
|
|
b: No.
|
|
|
|
choice: a or b
|
|
|
|
- question: Is a self-driving car a robot?
|
|
|
|
choices:
|
|
|
|
a: Yes.
|
|
|
|
b: No.
|
|
|
|
choice: a or b
|
|
|
|
```
|
|
|
|
|
|
|
|
Your answers will be checked automatically, once per week (more details are forthcoming), with the results given in the `examination.txt` file. |
|
|
|
Quizzes: An Individual Assignment
|
|
|
|
==========================================
|
|
|
|
|
|
|
|
In this assignment you need to complete a number of simple quizzes where questions pertain to lectures' content.
|
|
|
|
We use an automated quizz system based on personal GIT repositories, that will be created for each individual registered student.
|
|
|
|
|
|
|
|
Individual GIT repositories follow the naming convention https://gitlab.liu.se/tdde05-2025/tdde05-quizzes-air-YOURLiUID.
|
|
|
|
|
|
|
|
The scope of the quizzes covers Lectures 3 to 11 (using the numbering of the pre-recorded video lectures).
|
|
|
|
|
|
|
|
|
|
|
|
How to Submit
|
|
|
|
------------
|
|
|
|
|
|
|
|
1. Clone your personal GIT repository (i.e. `git clone YOUR-GIT-REPO`)
|
|
|
|
|
|
|
|
2. Edit `questions.yaml` file as described below
|
|
|
|
|
|
|
|
3. Commit and push the updated files (i.e. `git commit -m "updated answers"; git push`)
|
|
|
|
|
|
|
|
Answers should be given in YAML Format, where you modify the `choice: x` lines:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
example:
|
|
|
|
- question: What is the color of the sky?
|
|
|
|
choices:
|
|
|
|
a: Green
|
|
|
|
b: Blue
|
|
|
|
c: Red
|
|
|
|
d: Yellow
|
|
|
|
choice: b
|
|
|
|
lecture 01:
|
|
|
|
- question: Is an appliance a robot?
|
|
|
|
choices:
|
|
|
|
a: Yes.
|
|
|
|
b: No.
|
|
|
|
choice: a or b
|
|
|
|
- question: Is a self-driving car a robot?
|
|
|
|
choices:
|
|
|
|
a: Yes.
|
|
|
|
b: No.
|
|
|
|
choice: a or b
|
|
|
|
```
|
|
|
|
|
|
|
|
Your answers will be checked automatically twice per week, on Wednesday and Friday. That means you can answer your questions gradually after each lecture or correct your answers in case some answers are incorrect. Questions you have received will not change over time.
|
|
|
|
|
|
|
|
The results will be given in the `examination.txt` file. |