Questions are drupal nodes. There are module to clone nodes say node_clone [1], in this way you achieve cloning questions. Quiz 4.x is not open for new features we will consider this for quiz 5.x
[1] http://drupal.org/project/node_clone
http://drupal.org/node/699640
This can be made possible in quiz 4.x. When a question node is viewed outside of quiz it exposes its answer. This feature can be used with the combination of views and taxonomy to create lessons.
Quiz 3.x question field doesn't supports Full HTML input. Quiz 4.x supports input formats, set the input format to Full HTML and embed the image using imce [1] or wysiwyg [2] editor.
[1] http://drupal.org/project/imce
[2] http://drupal.org/project/wysiwyg
view own results permissionview user results permission.access all views permission. Long answer has to be evaluated manually. User with permission score long answer can do this. Students can view their quiz feedback under "My Results" tab in user profile page (user/[uid] page). Admin need to enable view own results permission for this.
Questions order will not reflect on already started quiz. This is because when the quiz starts the questions are loaded to session variable and it remains persistent till the end of quiz or until you logout. Unfortunately quiz starts when you click "view" tab or title of quiz node and most of the time you will *not* realize this. A logout and login may fix this.
#660440: Questions ordering doesn't works
To achieve this, navigate to "Admin -> Quiz management -> Quiz Configuration" (or drupal path admin/quiz/settings) and check the boxes under "Addons Configuration".
Note : You need to have UserPoints and JQuery Countdown modules enabled to use this feature.
You can turn off this option in the Quiz settings in Admin -> Site configuration -> Quiz settings.
please refer to #591202: Disabling sending quiz results by email
Quiz & Gradebook do not integrate with each other as expected. Gradebook settings override the way Quiz behaves. Quizzes assigned to Gradebook do not start. Their is a bug already reported for this,. This is fixed. please refer to #516886: Cannot start a quiz when assigned to a gradebook
Views integration is an advanced feature that allows site builders to create their own lists. So far, I've seen it used to generate reports of grades, CSV exports of quiz results, reports on how many times a given user took a given quiz, and so on.
But in order to use Views integration effectively, you will need to be proficient in building views, which is a skill on its own. You would probably want to start with some of the Views tutorials out there (Lullabot has some, IIRC).
By mbutcher @ http://drupal.org/node/502674#comment-1745710
Yes. A personality quiz is possible with Quiz 3.x. Create a quiz node with the "pass rate" set to 0 on the main quiz create/edit page. We hope to split them out into their own module during Quiz 4 development. It's just too hard to have two completely different kinds of quiz supported in the same module. Related issue #446858: Availability of the Personality Quiz
No. Quiz 3.x can't handle adaptive quizzes. Please check out #492000: If-then-else conditions to define the next question and #413176: adaptive quiz
Upgrading from Quiz 2 to Quiz 3 is fully supported. We have diligently maintained upgrade scripts. You will need to:
Imagine you need to export quiz results at least with basic set of fields say Question, User and Answer. You can do this by creating a view and exporting to CSV. You'll need the Views and the Views Bonus Pack modules.
Quiz 3.x supports six question types:
As of Quiz 3.x it is not possible because of the design complexity of the multichoice module. This module will be rewritten in Quiz 4.x as a part of Sivaji's GSoC project using quiz_question.module (an API to create new question types) to support this feature and it is expected to have the following features.
Types:
Scoring:
Quiz 3.x has a quiz_questions module which lets you write your own custom question type with just 100 or 150 lines of code. As of now there is no documentation for the quiz_questions module, but there are enough comment lines to describe the purpose of the classes, methods and attributes being used. The True_or_False and Matching modules were based on quiz_questions so you can take these modules as an example to build your custom quiz question type module.
Quiz 3.x has the Views module integration. To create a quiz block showing the top scorers or recent quiz you can use the Views module.