You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in the computation of student's effort. When a student sees a demo problem, the effort is logged as GIVEUP or alike.
Instead, effort should say EXAMPLE. Can this bug be fixed, and uploaded to the woj server (IDEALLY, to mathseeds also).
This error will be very obvious and unpleasant to teachers, as they see the reports in detail.
--IVON
The text was updated successfully, but these errors were encountered:
I think the Per Student Record that loads the Student efforts omits all records that are marked as demo problems. I am firing the below query which has the clause studentproblemhistory.mode != 'demo'
select sh.id,sh.problemId, pg.description,sh.problemEndTime,pr.name,pr.nickname, pr.statementHTML,pr.screenShotURL,sh.isSolved,sh.numMistakes,sh.numHints,sh.numAttemptsToSolve,sh.effort
from studentproblemhistory sh, problem pr, problemgroup pg where sh.studId in ( select id from student where classId=(:classId)) and sh.studId=(:studId)
and sh.mode != 'demo' and sh.problemId = pr.id and sh.topicId=pg.id order by sh.problemEndTime desc;
So I am not exactly sure what is to be done here (From Teacher Tools Standpoint)
This is still showing up and generating wrong impressions in the reports.
It would be nice to see that there was a specific problem shown as a worked out example.
DAVID, could we change the computeEffort method to encode EXAMPLE as an effort, if the problem had been seen as an example? I have the feeling that a lot of those problems that are missing effort (effort is null) is because of the examples.
Hi David and Neeraj,
There is a bug in the computation of student's effort. When a student sees a demo problem, the effort is logged as GIVEUP or alike.
Instead, effort should say EXAMPLE. Can this bug be fixed, and uploaded to the woj server (IDEALLY, to mathseeds also).
This error will be very obvious and unpleasant to teachers, as they see the reports in detail.
--IVON
The text was updated successfully, but these errors were encountered: