1 / 1

CodeHunt https://www.codehunt.com/ a game about coding with grading built in

Code Hunt: Gamifying Teaching and Learning of Computer Science at Scale. behavior. Secret Impl == Player Impl. Nikolai Tillmann , Jonathan de Halleux , Judith Bishop (Microsoft Research) Tao Xie (U . Illinois at Urbana-Champaign). CodeHunt https://www.codehunt.com/

zahur
Download Presentation

CodeHunt https://www.codehunt.com/ a game about coding with grading built in

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Code Hunt: Gamifying Teaching and Learning of Computer Science at Scale behavior Secret Impl== Player Impl Nikolai Tillmann, Jonathan de Halleux, Judith Bishop (Microsoft Research) Tao Xie (U. Illinois at Urbana-Champaign) CodeHunthttps://www.codehunt.com/ a game about coding with grading built in • Classic game experience • Maps to AP Computer Science • Players discover a secret algorithm and write code for it • Awesome Monaco editor • Timely and interactive feedback • Student attempts validated by Pex using MSR’s state-of-the-art dynamic symbolic analysis • Pex4Fun had >1.4 million submitted programs so far • Code Hunt aims to exceed this figure with gamification and Java source translation http://pex4fun.com/ Player Implementation Secret Implementation class Player { public static int Puzzle(int x) { return x; } } class Secret { public static int Puzzle(int x) { if (x <= 0) return 1; return x * Puzzle(x-1); } } 1,458,885 clicked 'Ask Pex!' class Test { public static void Driver(int x) { if (Secret.Puzzle(x) != Player.Puzzle(x)) throw new Exception(“Mismatch”); } } Nikolai Tillmann, Jonathan de Halleux, Tao Xie, Sumit Gulwani, Judith Bishop. Teaching and learning programming and software engineering via interactive gaming. ICSE 2013, Software Engineering Education, pp. 1117-1126 Contact: {nikolait, jhalleux, jbishop}@microsoft.com, taoxie@illinois.edu

More Related