I’m building a self-checking activity for students using Volume.
Their answers will go into a table and I want them to be able to input pi as part of their answer.
Right now, this is what I have.
cellContent(1,5): when table3.cellNumericValue(1,2)=8 AND table3.cellContent(1,4)=‘16\pi’ “” otherwise “
”
cellContent(2,5): when table3.cellContent(2,1)=\frac{2}{3} and table3.cellContent(2,4)=\frac{2}{9}\pi “” otherwise “
”
cellContent(3,5): when table3.cellNumericValue(3,2)=12 AND table3.cellContent=12\pi “” otherwise “
”
cellContent(4,5): when table3.cellNumericValue(4,2)=10 AND table3.cellNumericValue(4,3)=6 “” otherwise “
”
cellContent(5,5): when table3.cellNumericValue(5,1)=8 AND table3.cellNumericValue(5,2)=4 “” otherwise “
”
cellContent(6,5): when table3.cellNumericValue(6,1)=2 AND table3.cellNumericValue(6,2)=1 “” otherwise “
”
correct:
table3.cellNumericValue(1,2)=8 AND table3.input(1,4)=‘16\pi’ AND
table3.cellContent(2,1)=\frac{2}{3} AND table3.cellContent(2,4)=\frac{2}{9}\pi AND
table3.cellNumericValue(3,2)=12 AND table3.cellContent=12\pi AND
table3.cellNumericValue(4,2)=10 AND table3.cellNumericValue(4,3)=6 AND
table3.cellNumericValue(5,1)=8 AND table3.cellNumericValue(5,2)=4 AND
table3.cellNumericValue(6,1)=2 AND table3.cellNumericValue(6,2)=1 AND
Right now, I get an error and it doesn’t correct at all.
How can I make this work?
Thank you,