Skip to content

Commit

Permalink
Merge pull request #2 from virtual-labs/testing
Browse files Browse the repository at this point in the history
Fixed quiz and updated content
  • Loading branch information
BalammaBoya authored Mar 25, 2021
2 parents 470a6e8 + 2a54a62 commit 6c08e96
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 29 deletions.
30 changes: 9 additions & 21 deletions experiment-descriptor.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,7 @@
"source": "basics-of-queues.md",
"target": "basics-of-queues.html"
},
{
"unit-type": "task",
"label": "Pre Test Quiz Instructions",
"content-type": "video",
"source": "pre-test.md",
"target": "pre-test.html"
},

{
"unit-type": "task",
"label": "Pre Test Quiz",
Expand All @@ -65,43 +59,43 @@
},
{
"unit-type": "task",
"label": "BFS : Concept",
"label": "Concept",
"content-type": "video",
"source": "bfs-concept.md",
"target": "bfs-concept.html"
},
{
"unit-type": "task",
"label": "BFS : Algorithm",
"label": "Algorithm",
"content-type": "video",
"source": "bfs-algorithm.md",
"target": "bfs-algorithm.html"
},
{
"unit-type": "task",
"label": "BFS : Demo",
"label": "Demo",
"content-type": "simulation",
"source": "simulation/bfs_demo.html",
"target": "bfs_demo.html"
},
{
"unit-type": "task",
"label": "BFS : Practice",
"label": "Practice",
"content-type": "simulation",
"source": "simulation/bfs_practice.html",
"target": "bfs_practice.html"
},
{
"unit-type": "task",
"label": "BFS : Exercise",
"label": "Exercise",
"content-type": "simulation",
"source": "simulation/bfs_exercise.html",
"target": "bfs_exercise.html"
},

{
"unit-type": "task",
"label": "BFS : Quiz",
"label": "Quiz",
"content-type": "assesment",
"source": "bfs-quiz.js",
"target": "bfs-quiz.html"
Expand All @@ -118,13 +112,7 @@
{
"unit-type": "aim"
},
{
"unit-type": "task",
"label": "Overview",
"content-type": "video",
"source": "overview.md",
"target": "overview.html"
},

{
"unit-type": "task",
"label": "Time and Space Complexity of BFS",
Expand All @@ -143,7 +131,7 @@

{
"unit-type": "task",
"label": "Analysis Quiz",
"label": "Quiz",
"content-type": "assesment",
"source": "analysis-quiz.js",
"target": "analysis-quiz.html"
Expand Down
4 changes: 4 additions & 0 deletions experiment/aim.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Estimated Time

1 hour

### Learning Objectives of the Experiment

In this experiment, we will be able to do the following:
Expand Down
4 changes: 4 additions & 0 deletions experiment/analysis/aim.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Estimated Time

20 minutes

### Learning Objectives of this Module:

Take a look at what we will learn in this module:
Expand Down
1 change: 1 addition & 0 deletions experiment/analysis/analysis-quiz.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
function showResults() {
// gather answer containers from our quiz
const answerContainers = quizContainer.querySelectorAll(".answers");
answerContainers.forEach(e => e.style.color = "black");

// keep track of user's answers
let numCorrect = 0;
Expand Down
4 changes: 0 additions & 4 deletions experiment/analysis/overview.md

This file was deleted.

4 changes: 4 additions & 0 deletions experiment/bfs/aim.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Estimated Time

25 minutes

### Learning Objectives of this Module:

Welcome to this module on BFS! Take a look at what we will learn in this module:
Expand Down
1 change: 1 addition & 0 deletions experiment/bfs/bfs-quiz.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
function showResults() {
// gather answer containers from our quiz
const answerContainers = quizContainer.querySelectorAll(".answers");
answerContainers.forEach(e => e.style.color = "black");

// keep track of user's answers
let numCorrect = 0;
Expand Down
2 changes: 0 additions & 2 deletions experiment/bfs/overview.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
### Estimated Time

25 minutes
### An Introduction to BFS Concept
<iframe src="https://www.youtube.com/embed/fYXwV7e_vlc" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

2 changes: 0 additions & 2 deletions experiment/overview.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
### Estimated Time

1 hour
### Introduction
<iframe src="https://www.youtube.com/embed/0MYW7JymfMc" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

Expand Down

0 comments on commit 6c08e96

Please sign in to comment.