Creating a MOOC at University of Osnabrück

Post on 13-Jun-2015

732 views 2 download

Tags:

description

Professor Oliver Vornberger gives us a peek behind the scenes of his MOOC "Algorithmen und Datenstrukturen," to see the production process of this iversity course.

transcript

MOOC Algorithmen und Datenstrukturen

Unit

Unit

Unit

Unit

Unit

Unit

Chapte

r Structure

Green Screen

Tablet

import AlgoTools.IO; public class Collatz { public static void main(String [] argv) { int x, z; x = IO.readInt("Bitte eine Zahl: "); z = 0; while (x != 1) { if (x % 2 == 0) x = x / 2; else x = 3*x+1; z = z+1; } IO.println("Anzahl der Iterationen: " + z); } }

Animated Source

Hand-Camera

Capture + overlay Capture + Hand

Multiple Choice Quiz

Homework + Peer Reviewing

Exams

• Proctored Online Exam

graded by software

certificate with grade

• Written exam in Osnabrück

graded by students

certificate with grade and 6 ETSC credits