WHAT IS GAME-BASED LEARNING?
https://www.growthengineering.co.uk/what-is-game-based-learning/
Gamification and game-based learning have been hot topics in the world of learning and development for some time now, but did you know that they’re completely different?
The game-based learning market is booming. Worldwide revenues reached $2.6 billion in 2016, and are expected to skyrocket to a whopping $7.3 billion by 2021!
That’s why you need to understand exactly what it refers to, and how you can get in on the action. Let’s take a look!
[us_separator type=”default” icon=”fas|star”]
GAME-BASED LEARNING
Gamification is the process of applying game mechanics (points, levels, badges) to non-gaming scenarios (such as learning). Essentially you have a traditionally structured training programme or LMS, and you sprinkle your gaming mechanics on top of it to add some extra oomph.
Game-based learning on the other hand is almost a reversal of this. With this approach, you deliver your learners a fully-fledged, interactive game. This game is used as the foundation, and the training content is added on, or woven into it.
The typical scenario for a learning game involves playing a segment of the game and then being presented with some more traditional eLearning material. The game helps to boost engagement levels as you work through the content, helping you to take in more of the training and increase knowledge retention.
The gaming mechanics often come into play during the learning sections as well. For example, your learners could earn power-ups throughout the game, which they can use during a quiz. They might offer them more time, or remove some of the incorrect answers to make things easier.
[us_separator type=”default” icon=”fas|star”]
TYPES OF GAME-BASED LEARNING
There’s no one-size-fits-all when it comes to game-based learning, so you need to find something that suits your needs:
1. CUSTOM-BUILT GAMES
One option is to build a fully-functioning game from the ground up. You can design your game exactly as you see fit, to deliver training in exactly the way you want it to. It would be the perfect game for your learners.
The obvious draw-back here is that the vast majority of us are not game designers. Unless you’re lucky enough to have one hanging around, then your only option is to look to a third party to handle the creation process for you, and that can be expensive.
2. RAPID GAME AUTHORING
Chances are that you’re looking to create a learning game without investing too much of your time and budget. Rapid authoring tools, like our own Genie, offer you a number of pre-built game templates. All you need to do is upload your content and slot it in, bringing it to life in a flash!
Though you’ll have a wide selection of templates at hand, your choice is still very important. You should choose something which is relevant to the training in question, to avoid any disconnect between the game and content.
3. USING COMMERCIAL VIDEO GAMES
Of course, there are plenty of fantastic video games out there which can be used in some very imaginative ways. For example, plenty of teachers have deployed sandbox games such as Minecraft in the classroom, to promote creativity, collaboration, and problem solving.
Using existing games like this generally works best when working hands-on with a small group. The game was not developed specifically for your training programme, so you’ll need to provide a fair bit of your direction to your learners.
[us_separator type=”default” icon=”fas|star”]
Keep an eye out for plenty more entries into our Online Learning Glossary over the coming weeks!
And if you’re looking to find out more about Genie, our game-based authoring tool, click the banner to sign up for a free 30-day demo:
WHAT IS GAME-BASED LEARNING?的更多相关文章
- 强化学习之 免模型学习(model-free based learning)
强化学习之 免模型学习(model-free based learning) ------ 蒙特卡罗强化学习 与 时序查分学习 ------ 部分节选自周志华老师的教材<机器学习> 由于现 ...
- Pros and Cons of Game Based Learning
https://www.gamedesigning.org/learn/game-based-learning/ I remember days gone by at elementary schoo ...
- Game Based Learning: Why Does it Work?
Forty years of research[i] says yes, games are effective learning tools. People learn from games, an ...
- chip based learning
chip types Transistor mode of operation Digital chip: 0/1 -> digital clac Analog chip: sound / b ...
- Embedded based learning
简单整理了一些嵌入式底层需要接触的相关概念. # CPU CU. Control Unit. send need-clac-data -> ALU clac -> get resul ...
- SOME USEFUL MACHINE LEARNING LIBRARIES.
from: http://www.erogol.com/broad-view-machine-learning-libraries/ http://www.slideshare.net/Vincenz ...
- A Complete Tutorial on Tree Based Modeling from Scratch (in R & Python)
A Complete Tutorial on Tree Based Modeling from Scratch (in R & Python) MACHINE LEARNING PYTHON ...
- A Novel Multi-label Classification Based on PCA and ML-KNN
ICIC Express Letters ICIC International ⓒ2010 ISSN 1881-803X Volume4, Number5, O ...
- 海量数据挖掘MMDS week2: Nearest-Neighbor Learning最近邻学习
http://blog.csdn.net/pipisorry/article/details/48894963 海量数据挖掘Mining Massive Datasets(MMDs) -Jure Le ...
- 机器学习算法之旅A Tour of Machine Learning Algorithms
In this post we take a tour of the most popular machine learning algorithms. It is useful to tour th ...
随机推荐
- go 语言的一个赋值操作
最近在看client-go源码,在源码的\tools\caches\store.go文件中有一行代码不得其解(如下标黄内容),它将一个struct赋值给了一个interface type Store ...
- Oracle 层次查询 connect by
oracle 层次查询 语法: SELECT ... FROM [WHERE condition] --过 ...
- 整合去除HTML 标签, 去除开头结尾换行,将连续空格合并为一个
文本是从编辑器中读取数据,有的时候,可能不需要显示格式这个时候需要去除HTML 标签,只引入其中的文本 //去掉html标签 function removeHtmlTab(tab) { return ...
- scala 函数式编程之集合操作
Scala的集合体系结构 // Scala中的集合体系主要包括:Iterable.Seq.Set.Map.其中Iterable是所有集合trait的根trai.这个结构与Java的集合体系非常相似. ...
- Spring Cloud之Zuul网关路由
前端请求先通过nginx走到zuul网关服务,zuul负责路由转发.请求过滤等网关接入层的功能,默认和ribbon整合实现了负载均衡 比如说你有20个服务,暴露出去,你的调用方,如果要跟20个服务打交 ...
- 史上最全HashMap红黑树解析
HashMap红黑树解析 红黑树介绍 TreeNode结构 树化的过程 红黑树的左旋和右旋 TreeNode的左旋和右旋 红黑树的插入 TreeNode的插入 红黑树的删除 TreeNode的删除节点 ...
- java基础 接口私有方法
/** * 问题描述: * 我们需要抽取一个共有方法,用来解决两个默认方法之间重复代码的问题 * 但是这个共有方法不应该让实现类使用,应该是私有化的. * * 解决方案: * 从java 9开始,接口 ...
- 调用WebApi出现 远程服务器返回错误: (500) 内部服务器错误
一.检查错误错误 将 HttpWebResponse response = (HttpWebResponse)request.GetResponse();改为 HttpWebResponse resp ...
- winform+CefSharp 实现和js交互
1:窗体加载的时候添加 webBrowser.RegisterJsObject("getuserName", new _Event()); 2:注册C#方法为js方法 /// // ...
- js 时间格式化成字符串
我用的简单的直接的字符串格式转化 function getTimeStr() { var date = new Date(); var year = date.getFullYear(); var m ...