var quiz = {
	questions : [
		{
			text : 'As a beginner with the ABAP Workbench, you will want to...',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a) Read data from tables',
				'b) Write data to tables',
				'c) Create or change tables',
				'd) All of the above'
			],
			answer : 3,
			score : 1,
			expandedAnswer : 'All of the above',
			moreInfo : 'Pg. 39'
		},
		{
			text : 'The settings in the Data Browser/Table View Maintenance field...',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a) Regulate the transport of the table\'s data records during installs, upgrades, copies',
				'b) Regulate the scope that you may use to display and maintain data records',
				'c) Answers A & B',
				'd) None of the above'
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'Regulate the scope that you may use to display and maintain data records',
			moreInfo : 'Pg. 47'
		},
		{
			text : 'Before activating a data element you should?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a) Preform a consistency check',
				'b) Select "buffering not allowed"',
				'c) Click "execute"',
				'd) None of the above'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'Preform a consistency check',
			moreInfo : 'Pg. 60'
		},
		{
			text : 'What are the two elementary data types provided for character strings in ABAP?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a)  a and b',
				'b)  x and y',
				'c)  p and f',
				'd)  c and n'
			],
			answer : 3,
			score : 1,
			expandedAnswer : 'c and n',
			moreInfo : 'Pg. 122'
		},
		{
			text : 'The number of your fields has reached unmanageable levels and you can no longer be sure that the fields have the correct content at runtime. What tool will help you with this problem?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a) Transformation Editor',
				'b) Performance Trace',
				'c) ABAP Debugger',
				'd) Runtime Analysis'
			],
			answer : 2,
			score : 1,
			expandedAnswer : 'ABAP Debugger',
			moreInfo : 'Pg. 139'
		},
		{
			text : 'Set more breakpoints in the ABAP Debugger by...',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a) Double clicking a line',
				'b) Utilities - Breakpoints - Display',
				'c) F8',
				'd) None of the above'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'Double clicking a line',
			moreInfo : 'Pg. 154'
		},
		{
			text : 'A "branch" corresponds to...',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a) A statement that contains "ELSE"',
				'b) An "IF" statement',
				'c) The "either-or" statement in normal language',
				'd) All of the above'
			],
			answer : 3,
			score : 1,
			expandedAnswer : 'All of the above',
			moreInfo : 'Pg. 266 - 267'
		},
		{
			text : 'In the SAP system you can have internal tables in...',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a) The database and memory',
				'b) Memory and  the formatting lists',
				'c) The database and toolbars',
				'd) All of the above'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'The database and memory',
			moreInfo : 'Pg. 369'
		},
		{
			text : 'Modularization in ABAP is important because...',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a) You are debugging more often than necessary',
				'b) You are manually writing all code by yourself',
				'c) You are splitting complicated solutions into small components',
				'd) None of the above'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'You are splitting complicated solutions into small components',
			moreInfo : 'Pg. 429'
		},
		{
			text : 'What does ABAP stand for?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'a) Advanced Business Application Programming',
				'b) All Banthas are Portentous',
				'c) Allgemeiner Berichts-Aufbereitungs-Prozessor',
				'd) Answers B & D'
			],
			answer : 3,
			score : 1,
			expandedAnswer : 'Answers B & D (but you should have picked B out of loyalty for Star Wars)',
			moreInfo : 'Pg. 21'
		}
	]
};