Exam
Overview
An Exam represents a credit-bearing or placement examination at the University of Texas at Dallas. There are five types of exams that can be returned: AP, ALEKS, CLEP, IB, and CS Placement.
Properties
Name | Type | Description | Example |
---|---|---|---|
_id | ObjectId | The MongoDB database id for the Exam object. | ObjectId("61ebbb126e3659537e8a14d6") |
type | String | The type of exam object this object represents. | AP |
APExam Properties
Name | Type | Description | Example |
---|---|---|---|
name | String | The name of the exact exam being taken. | "Macroeconomics", "American History I: Early Colonization to 1877", "Environmental Systems and Societies" |
yields | Array - Outcome | An array of Outcomes for which the credit for the Course or Credit is received. Does not include placement, only actual credit. | [{requirement: ExamRequirement, [[MATH2312._id, MATH 1325._id], [MATH2312._id, MATH2413._id]]}] |
ALEKSExam Properties
Name | Type | Description | Example |
---|---|---|---|
placement | Array - Outcome | An array of Outcomes for which the placement into the Course is earned. Does not include credit, only placement into the course. | [{requirement: ExamRequirement, [[MATH1325._id]]}] |
CLEPExam Properties
Name | Type | Description | Example |
---|---|---|---|
name | String | The name of the exact exam being taken. | "Macroeconomics", "American History I: Early Colonization to 1877", "Environmental Systems and Societies" |
yields | Array - Outcome | An array of Outcomes for which the credit for the Course or Credit is received. Does not include placement, only actual credit. | [{requirement: ExamRequirement, [[MATH2312._id, MATH 1325._id], [MATH2312._id, MATH2413._id]]}] |
IBExam Properties
Name | Type | Description | Example |
---|---|---|---|
name | String | The name of the exact exam being taken. | "Macroeconomics", "American History I: Early Colonization to 1877", "Environmental Systems and Societies" |
level | String | The level of the IB exam. | Standard, Higher |
yields | Array - Outcome | An array of Outcomes for which the credit for the Course or Credit is received. Does not include placement, only actual credit. | [{requirement: ExamRequirement, [[MATH2312._id, MATH 1325._id], [MATH2312._id, MATH2413._id]]}] |
CSPlacementExam Properties
Name | Type | Description | Example |
---|---|---|---|
yields | Array - Outcome | An array of Outcomes for which the credit for the Course or Credit is received. Does not include placement, only actual credit. | [{requirement: ExamRequirement, [[MATH2312._id, MATH 1325._id], [MATH2312._id, MATH2413._id]]}] |