Git Product home page Git Product logo

jquiz's Introduction

JQuiz

Lightweight app to read/write quiz with JSON

Need to practice for an exam or just want to test your friends or whatever..? Do it thanks to this tool which allows you to consult, upload and create your own quiz.

This tool was created with Vue and Boostrap.

Features

Create your own quiz with different types of questions including images or videos. You can also upload an existing quiz in json format that you have been given or previously saved.

How to use it

A quiz is composed of one or more parts containing questions. Here is an example:

{
  "title": "Quiz's title",
  "instructions": "Quiz's instructions",
  "quiz": [{
      "name": "Part 1",
      "questions": [{
          "text": "Input question of Part 1",
          "type": "input",
          "answers": ["answer 1", "answer 2"],
          "image": "https://images.unsplash.com/photo-1532455935509-eb76842cee50?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=91b5904019e2c1448a0609eba936ef81&auto=format&fit=crop&w=2251&q=80"
        },
        {
          "text": "Radio question of Part 2",
          "type": "radio",
          "propal": [
            "answer 1",
            "answer 2",
            "answer 3"
          ],
          "answers": [
            "answer 2"
          ]
        }
      ]
    },
    {
      "name": "Part 2",
      "questions": [{
          "text": "Input question of Part 2",
          "type": "input",
          "answers": ["answer 1"]
        }
      ]
    }
  ]
}

Start by naming your quiz and adding instructions if necessary and click next.

Give a name to the first part of your quiz, select the type, write your question, the answers and click on Add Question. After you have added all the questions for your game, finalize it by clicking on Add Part.

You can now preview your quiz by clicking on JSON Preview.

Continue adding questions/parts or finalize your quiz by clicking on Finish, the file containing your quiz will then start downloading.

Upload a valid JSON file by following the example above or by creating it from the create function.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.