133k views
5 votes
Using YAML, write your student record for this trimester containing:

- Your name: family name, given name, preferred name (omit any that aren't relevant).
- Units that you are enrolled in, including unit code, name of the unit, and mode of offer (Oncampus, or Online).
- Your timetable, including activity type (class, practical, workshop, tutorial, etc.), location (campus or online), and room number.

User Pew Labs
by
8.4k points

1 Answer

4 votes

Final answer:

A student record in YAML for a trimester includes the student's name and enrollment details for units with mode of offer, as well as a timetable detailing the activity type, location, and room numbers. Activities must be completed on time, following the Schedule of Work, and findings should be recorded in the student's own words.

Step-by-step explanation:

To write a student record in YAML format for this trimester, you would structure it as follows:

name:
family_name: Doe
given_name: John
preferred_name: Johnny
enrollment:
- unit_code: COMP101
unit_name: Introduction to Computer Science
mode_of_offer: Online
- unit_code: WEB202
unit_name: Advanced Web Development
mode_of_offer: On-campus
timetable:
- activity_type: class
location: campus
room_number: B104
- activity_type: practical
location: Online
room_number: N/A
- activity_type: tutorial
location: campus
room_number: C302

This YAML document consists of structured data: 'name' outlines the student's personal information, while 'enrollment' details the units they are registered in,
including their delivery mode, and 'timetable' provides information about when and where classes, practicals, and tutorials take place.

When engaging in activities such as quizzes, it's essential to not only complete these tasks on time, as per the Schedule of Work, but remember to also record your findings in your own words while including information learned from online resources provided.

User Brosig
by
7.6k points