+ All Categories
Home > Education > Creating a MOOC at University of Osnabrück

Creating a MOOC at University of Osnabrück

Date post: 13-Jun-2015
Category:
Upload: openeducationeuropa
View: 732 times
Download: 2 times
Share this document with a friend
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.
Popular Tags:
10
MOOC Algorithmen und Datenstrukturen
Transcript
Page 1: Creating a MOOC at University of Osnabrück

MOOC Algorithmen und Datenstrukturen

Page 2: Creating a MOOC at University of Osnabrück

Unit

Unit

Unit

Unit

Unit

Unit

Chapte

r Structure

Page 3: Creating a MOOC at University of Osnabrück

Green Screen

Page 4: Creating a MOOC at University of Osnabrück

Tablet

Page 5: Creating a MOOC at University of Osnabrück

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

Page 6: Creating a MOOC at University of Osnabrück

Hand-Camera

Page 7: Creating a MOOC at University of Osnabrück

Capture + overlay Capture + Hand

Page 8: Creating a MOOC at University of Osnabrück

Multiple Choice Quiz

Page 9: Creating a MOOC at University of Osnabrück

Homework + Peer Reviewing

Page 10: Creating a MOOC at University of Osnabrück

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


Recommended