MediaWiki:Sitenotice:
2024-03-02: The wiki ran out of disk space, so things were not working. This has been resolved by adding another 5GB of quota ;-) Thanks to Tim Lindner for reporting the issues. 2020-05-17: If a page gives you an error about some revision not being found, just EDIT the page and the old page should appear in the editor. If it does, just SAVE that and the page should be restored. OS-9 Al (talk) 12:22, 17 May 2020 (CDT)

Teacher's helper, student's friend (Rainbow 1981-09): Difference between revisions

From CoCopedia - The Tandy/Radio Shack Color Computer Wiki
Jump to navigation Jump to search
(Created page with "y")
 
mNo edit summary
Line 1: Line 1:
y
For the teacher amongst us, GRADER can be a reaI boon!
 
However, we would also emphasize that GRADER can easily be adapted for keeping up to date records on a single student. By using GRADER, the student would be able to chart his or her progress throughout a grading period and know where he stands at all times. It’s also a good way for parents to keep track of how a student is doing.
 
We will go through GRADER part by part so it will be easier to adapt It, if necessary.
 
Lines 10-25 initiate the program and ask for the type grade you will be compiling, Because, in our use, the reading grade only has daily averages, we wrote a special routine for reading grades at lines 600-780. This could be your whole program if all grades are weighted the same.
 
Lines 60-110 and 120-180 do the actual computation of grades. Since this particular program was written for third grade level, there are a lot of children who make 100's, especially on daily work. To eliminate the tedium of entering all those 100's, we added the subroutines 340-380 and 390-430 to make the inputting of 100's much easier. This really cuts down on the time it takes to enter the grades.
 
We chose to enter the grades as a string and then take the value of the string so we could assign the word "end" to break out of the grade input loop. While it would have been just as easy to use something like "IF S>150 GOTO 110" and then use any real high number, it seemed easier to use an easily-recognized word to break out of the loop.
 
Please also note lines 70 and 140. These take care of mistakes. If an incorrect grade is entered, just enter the incorrect grade again as a minus. That not only reduces the total by the incorrect number, it also reduces the number of "chances" by one, lines 110 and 100 take the average of the types of grades.
 
Line 190 is where the allocation of weight to the types of grades is made. In this instance, teats are worth one-third and daily work two-thirds. These percentages are easily changed to heat whatever needs you have.
 
The remainder of the program is devoted to the printout. Quite a bit of attention was paid to this because, in the situation for which it was written, a great many students are "traded" for either enriched or remedial work. The printout, including the name, subject, number of "chance," total points and number of 100's constitutes a full report to the student's "home" teacher. It means once the grade are computed, than do not have to be re-recorded elsewhere.
 
Also, to make life easier, the program is set to "form feed" for a 66-line piece of paper. This mikes the whole report easier to deal with.
 
There are certain economies which could have been employed to save memory space, particularly in the printout image statements, but, since this program fits very comfortably in 4k, we did not see that as necessary. Of course, you need Extended Color Basic to use the PRINTUSING statement, but. If you do not have that, it is easily convertable.

Revision as of 07:24, 31 March 2019

For the teacher amongst us, GRADER can be a reaI boon!

However, we would also emphasize that GRADER can easily be adapted for keeping up to date records on a single student. By using GRADER, the student would be able to chart his or her progress throughout a grading period and know where he stands at all times. It’s also a good way for parents to keep track of how a student is doing.

We will go through GRADER part by part so it will be easier to adapt It, if necessary.

Lines 10-25 initiate the program and ask for the type grade you will be compiling, Because, in our use, the reading grade only has daily averages, we wrote a special routine for reading grades at lines 600-780. This could be your whole program if all grades are weighted the same.

Lines 60-110 and 120-180 do the actual computation of grades. Since this particular program was written for third grade level, there are a lot of children who make 100's, especially on daily work. To eliminate the tedium of entering all those 100's, we added the subroutines 340-380 and 390-430 to make the inputting of 100's much easier. This really cuts down on the time it takes to enter the grades.

We chose to enter the grades as a string and then take the value of the string so we could assign the word "end" to break out of the grade input loop. While it would have been just as easy to use something like "IF S>150 GOTO 110" and then use any real high number, it seemed easier to use an easily-recognized word to break out of the loop.

Please also note lines 70 and 140. These take care of mistakes. If an incorrect grade is entered, just enter the incorrect grade again as a minus. That not only reduces the total by the incorrect number, it also reduces the number of "chances" by one, lines 110 and 100 take the average of the types of grades.

Line 190 is where the allocation of weight to the types of grades is made. In this instance, teats are worth one-third and daily work two-thirds. These percentages are easily changed to heat whatever needs you have.

The remainder of the program is devoted to the printout. Quite a bit of attention was paid to this because, in the situation for which it was written, a great many students are "traded" for either enriched or remedial work. The printout, including the name, subject, number of "chance," total points and number of 100's constitutes a full report to the student's "home" teacher. It means once the grade are computed, than do not have to be re-recorded elsewhere.

Also, to make life easier, the program is set to "form feed" for a 66-line piece of paper. This mikes the whole report easier to deal with.

There are certain economies which could have been employed to save memory space, particularly in the printout image statements, but, since this program fits very comfortably in 4k, we did not see that as necessary. Of course, you need Extended Color Basic to use the PRINTUSING statement, but. If you do not have that, it is easily convertable.