Skip to main content Skip to local navigation
Home » Category: 'eClass'

eClass

H5P: Time Restrictions with Exceptions

I like to do flipped classes with H5P plugins on Moodle. When I do so I set up “from” and “to” time restrictions to ensure that the homework is done during the class period. It doesn’t matter to me if the students are in the classroom or not. What’s important is that they’re doing homework […]

EECS Tool Highlight: Class Lists

If you’re an EECS instructor here at York University, you can obtain a lists of students that are currently in your course, text files that are easy to download and review. They’re outside of eClass and found in one of three ways: To access the lists on an EECS server like indigo1, use an SFTP […]

CourseHero Watermarks, Why Doesn’t YorkU?

Piracy of professor-authored teaching material is rampant. I’ve written about it before. Students and teaching staff have uploaded my material to Course Hero and I’m not happy about it. In spite of requesting that they don’t do it, they still do it. I write explicit footnotes in my documents saying not to do it, and […]

VPL: A Java Unit Test Example

The following is an example of the files needed to create a working Virtual Programming Lab exercise for Java: vpl_run.sh vpl_evaluate.sh MainClass.java StudentSolution.java TeacherReferenceSolutions.java TheTestClass.java With this you can evaluate one student submission against a single reference solution. Two methods are run: one is the student’s method and one is the teacher’s method. The output […]

Automated Grading of Python in VPL using Unit Tests

A few of my colleagues here at YorkU have expressed an interest in using Python with Virtual Programming Lab on our Moodle-based eClass Learning Management System. I don’t have a lot of Python experience, having only really used it for some data processing and toy embedded system demonstrations in the past. So I adapted the […]

Automated Student Evaluations in C (part 5)

This is the fifth in the series of postings on automated grading in C. Here, I’ve modified the VPL exercise to include four possible flowcharts that the students can implement, but the particular flowchart now get assigned to the student based on the time of day. The VPL output (both “run” and “evaluate” looks like […]

Automated Student Evaluations in C (part 4)

In this fourth post, I’m going to modify the way the unit tests in C get picked up by the VPL “run” and “evaluate” scripts so that rather than look for a particular phrase returned by the unit test (something like “The unit test expected to see 5 but the student’s function returned 1”), it’s […]

Automated Student Evaluations in C (part 3)

This is the third post in the series on evaluating student assignments in VPL with C and unit testing. We’re targeting using VPL on Moodle / eClass. Specifically, the bash scripts are based on the fantastic work of Smith College professor emeritus, Dr. Dominique ThiĆ©baut. He wrote about his VPL work here and while his […]

Automated Student Evaluations in C (part 2)

Here’s a simple VPL exercise that can grade a simple student-submitted function. The idea is that there are two bash scripts, one for rough work and one for graded evaluation and these scripts will compile the C program, consisting of a main function that calls the student function, passing two integers to it and having […]

Automated student testing in Java (Part 1)

As with earlier posts for Matlab, I’m putting together a set of exercises for automated student testing in introductory programming classes, but this time for Java. The idea is to integrate this into Virtual Programming Lab or secure lab tests. In a future post I’ll do a VPL version of this, but for now this […]