506 results for "answer".
-
Question in How-tos
The student is asked to give the roots of a quadratic equation. They should be able to enter the numbers in any order, and each correct number should earn a mark.
When there's only one root, the student can only fill in one of the answer fields.
This is implemented with a gap-fill with two number entry gaps. The gaps have a custom marking algorithm to allow an empty answer. The gap-fill considers the student's two answers as a set, and compares with the set of correct answers.
The marking corresponds to this table:
There is one root There are two roots Student gives one correct root 100% 50%, "The root you gave is correct, but there is another one." Student gives two correct roots impossible 100% Student gives one incorrect root 0% 0% Student gives one incorrect, one correct root 50% "One of the numbers you gave is not a root". 50% "One of the numbers you gave is not a root". Student gives two incorrect roots 0% 0% -
Question in How-tos
The expected answer involves the logarithm of a negative number, which doesn't have a unique solution.
The part's marking algorithm evaluates the exponential of the student's answer and the expected answer, and compares those.
-
Question in How-tos
The expected answer involves the logarithm of a negative number, which doesn't have a unique solution.
The part's marking algorithm checks that the student's answer differs from the expected answer by a multiple of $2\pi$.
-
Question in How-tos
A random proper fraction $a/b$ with denominator in the range 2 to 30 is picked, and the student must write $\frac{a}{b} \pi$.
The point of this question is to demonstrate that the correct answer is shown as a multiple of $\pi$ rather than a decimal.
-
Question in How-tos
The number entry part in this question has an alternative answer which is marked correct if the student's number satisfies an equation specified in the custom marking algorithm.
-
Question in HELM books
"Explain what is meant by the argument of a function."
Unmarked: Answer: "The argument is the input."
-
Question in How-tos
A custom marking algorithm picks out the names of the constants of integration that the student has used in their answer, and tries mapping them to every permutation of the constants used in the expected answer. The version that agrees the most with the expected answer is used for testing equivalence.
If the student uses fewer constants of integration, it still works (but they must be wrong), and if they use too many, it's still marked correct if the other variables have no impact on the result. For example, adding $+0t$ to an expression which otherwise doesn't use $t$ would have no impact.
-
Question in HELM books
Student is shown a simple (randomised) function and asked to describe its behaviour. This is an information only question. Students need to view the advice to check their answer.
-
Question in pre-algebra Numeracy and Arithmetic
a) Multiplying decimals with a single non-zero digit. Students are told to preserve the number of decimal places (from the question to the answer).
b) Multiplying decimals requiring the multiplication algorithm.
-
Question in How-tos
Should not be used: this relies on a custom JavaScript which is not guaranteed to continue working.
Wrap the student's answer in
set()so it's marked as a set. -
Question in Alexander's workspace
Basic fraction arithmetic, giving answers in lowest form.
-
Question in Engineering Statics
Two known forces, and a third with known magnitude act on a rigid body. Apply $\Sigma M = 0$ about a pin restraint to determine the direction of the third force. The problem has two valid answers.
-
Question in HELM books
Simplify an algebraic fraction where the numerator is a factor of the quadratic on the denominator. Posed as a yes/no question, is this fraction equivalent to this simplified form? The answer is always yes. Part of HELM Book 1.4
-
Question in Demos
The student must write code to compute the standard deviation of an unknown list of measurements.
The suggested answer uses numpy.std.
-
Question in Demos
This is the simplest demonstration of the "code" part type I could think of: write Python to assign
x = 1.An alternative answer gives a hint if the student's code doesn't define x at all.
-
Question in NursingNursing question.
-
Question in NursingNursing question. Determine the units of an answer given the units and operations used.
-
Question in NursingNursing question. Determine the units of an answer given the units and operations used.
-
Question in NursingNursing question. Determine the units of an answer given the units and operations used.
-
Question in HELM books
Expand (a+b)(c+d). a,b,c,d are random terms that can be +ve or -ve, and can consist of a number and/or a letter.
The answer must contain no brackets but will be accepted if it is not simplified from there.
Part of HELM Book 1.3
-
Question in MASH Bath: Question Bank
Solving a pair of linear simultaneous equations, giving answers as integers or fractions.
-
Question in Foundation Maths
Shows how to retrieve the student's answer to another part from a custom marking script.
-
Question in Foundation Maths
No description given
-
Question in Foundation Maths
Shows how to retrieve the student's answer to another part from a custom marking script.
-
Question in HELM books
Divide two numbers, at least one of which is negative. The answer is always an integer.
-
Question in HELM books
Calculate the product of two randomised scientific notation numbers and give the answer in scientific notation.
Part of HELM Book 1.2
-
Question in HELM books
Simplify n1.v^k1.(n2.v^k2), where n1, n2 are positive integers, v is a random letter variable, and k1 and k2 are nonzero integers.
The answer should be expressed as n.v^k
Part of HELM Book 1.2
-
Question in Demos
This question demonstrates how to use GeoGebra applets in explore mode.
The student must construct a polygon by adding points one at a time. At any point, they can answer the question, "Is the centroid inside the polygon?"
GeoGebra's IsInRegion command is used to decide if the centroid is inside the polygon.
-
Question in Demos
The student is asked to integrate a given function. The marking algorithm differentiates the student's answer, and checks that it is equivalent to the original function.
-
Exam (12 questions) in .Differential CalculusDesigned to instill a systematic method. The first 6 questions are scaffolded (step by step) followed by 2 randomly selected questions that only ask for a final answer.