﻿var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "في أي عام حصلت الجزائر على استقلاها؟";
choices[0] = new Array();
choices[0][0] = "1960";
choices[0][1] = "1962";
answers[0] = choices[0][1];

questions[1] = "في أي عام حصل فيلم وقائع سنوات الجمر على جائزة السعفة الذهبية؟";
choices[1] = new Array();
choices[1][0] = "1990";
choices[1][1] = "1975";
answers[1] = choices[1][1];

questions[2] = "الروائي الجزائري مالك حداد كان يكتب";
choices[2] = new Array();
choices[2][0] = "باللغة العربية";
choices[2][1] = "باللغة الفرنسية";
answers[2] = choices[2][1];

questions[3] = "من القائل: أنا مع فلسطين ظالمة أو مظلومة";
choices[3] = new Array();
choices[3][0] = "أحمد بن بللة";
choices[3][1] = "هواري بومدين";
answers[3] = choices[3][1];

questions[4] = "اعلان الاستقلال الفلسطيني اعلن في الجزائر عام";
choices[4] = new Array();
choices[4][0] = "1988";
choices[4][1] = "1993";
answers[4] = choices[4][0];

questions[5] = "نجمة عنوان رواية جزائرية كتبت بالفرنسية. من هو المؤلف؟";
choices[5] = new Array();
choices[5][0] = "كاتب ياسين";
choices[5][1] = "رشيد بو جدرة";
answers[5] = choices[5][0];

questions[6] = "عدد المشاركين والمشاركات في ملف العدد";
choices[6] = new Array();
choices[6][0] = "25";
choices[6][1] = "15";
answers[6] = choices[6][1];

questions[7] = "تاء الخجل عنوان رواية لفضيلة الفاروق";
choices[7] = new Array();
choices[7][0] = "لا";
choices[7][1] = "نعم";
answers[7] = choices[7][1];

questions[8] = "لاروكاد عنوان رواية لعيسى شريط";
choices[8] = new Array();
choices[8][0] = "لا";
choices[8][1] = "نعم";
answers[8] = choices[8][1];

questions[9] = "وطن من زجاج عنوان رواية لياسيمنة صالح";
choices[9] = new Array();
choices[9][0] = "لا";
choices[9][1] = "نعم";
answers[9] = choices[9][1];


// response for getting 100%
response[0] = "ممتاز، احسنت";
// response for getting 90% or more
response[1] = "ممتاز"
// response for getting 70% or more
response[2] = "جيد جدا";
// response for getting over 50%
response[3] = "جيد";
// response for getting 40% or more
response[4] = "لا بأس";
// response for getting 20% or more
response[5] = "جرب ثانية";
// response for getting 10% or more
response[6] = "جرب ثانية";
// response for getting 9% or less
response[7] = "الانسان يتعلم حتى من الخطأ";