summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSBeans <info@kayakporn.com>2012-12-14 11:49:24 +0000
committerSBeans <info@kayakporn.com>2012-12-14 11:49:24 +0000
commit1cbbc96ab45bc75231fb9918eef6799c1e1fc4c6 (patch)
treeb4d171d3365bd2ad82d64930002b3fe7018bf4dc
parentc0c6670e85f9c08a11bfa2f20d61953c9f49d3ab (diff)
Added More questions
-rw-r--r--blaquiz.php31
1 files changed, 28 insertions, 3 deletions
diff --git a/blaquiz.php b/blaquiz.php
index d276e43..276207c 100644
--- a/blaquiz.php
+++ b/blaquiz.php
@@ -5,16 +5,41 @@
// Version History
// 0.0.1 Created blaquiz.php
+ // 0.0.2 Added for questions and answers
- $version = "BlaQuiz Version: 0.0.1";
+ $version = "BlaQuiz Version: 0.0.2";
$questions = array (
"How many bits in a byte?",
- "What does TTP mean?"
+ "What does TTP mean?",
+ "What does RAM stand for?",
+ "What does ROM stand for?",
+ "What does CPU stand for?",
+ "What does GPU stand for?",
+ "Checking a computer program for errors is called what?",
+ "The term BASIC is an acronym for what?",
+ "Grace thought of a number, added 7, multiplied by 3, took away 5 and divided by 4 to give an answer of 7. What was her starting number?",
+ "John starts with a number. He squares it, then takes away 5, next multiplies it by 4, takes away 7, divides it by 3 and finally adds 6. His answer is 9.What number did he start with? ",
+ "If ADD = 9, BAD = 7, and CAD = 8 what is the value of ADA?",
+ "If DATA = 52, CACHE = 40 and BIT = 62. What is the value of BABBAGE?",
+ "Who coined the term Web 2.0?",
+ "The Internet began with the development of?"
);
$answers = array (
"8",
- "Time To Poo"
+ "Time To Poo",
+ "Random Access Memory",
+ "Read Only Memory",
+ "Central Processing Unit",
+ "Graphical Processing Unit",
+ "Debugging",
+ "Beginner's All-purpose Symbolic Instruction Code",
+ "4",
+ "3",
+ "6",
+ "40",
+ "Dale Dougherty",
+ "ARPANET"
);
// get the input
$stdin = read_stdin();