var quiz = {
	questions : [
		{
			text : 'The new network administrator found out that the company’s RAID system was only carrying out striping and not using parity. Why would the company do this?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Performance <br>',
				'Redundancy',
				'Fault tolerance',
				'Confidentiality'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'Striping is a process that writes data to several hard drives at one time. With more than one head writing at one time and reading at one time, the performance is increased when the data is retrieved. If the company was also using parity, it would have fault tolerance in place.',
			moreInfo : 'Learn about <a href="http://searchstoragechannel.techtarget.com/generic/0,295582,sid98_gci1296705,00.html" target="_blank">RAID configuration</a> in this FAQ.'
		},
		{
			text : 'It is important that security countermeasures are transparent to users and attackers. \nWhich of the following is not an example of why transparency should be in place?\n',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'User activities are monitored and tracked without the user knowing about the mechanism that is carrying this out. ',
				'User activities are monitored and tracked without negatively affecting system performance. <br>',
				'Unauthorized access attempts are denied and logged without the intruder knowing about the mechanism that is carrying this out.',
				'Users are allowed access in a manner that does not negatively affect business processes.'
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'Unfortunately, security components usually affect system performance in one fashion or another, although many times it is unnoticeable to the user. The reason that controls should be transparent is so that users and intruders do not know enough to be able to disable or bypass them. The controls should also not stand in the way of the company being able to carry out its necessary functions.',
			moreInfo : ''
		},
		{
			text : 'A company needs to be concerned about an asset\'s reliability, confidentiality and integrity. What is used to enforce the protection of integrity?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Controlling physical security',
				'Using access controls <br>',
				'Enforcing the rules of confidentiality',
				'Using logical security '
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'Access controls are used to enforce the protection of confidentiality, reliability and integrity. Access controls can be in the form of physical or logical, which is why answer b is correct. Access controls encompass physical and logical controls. You can have physical, logical and/or administrative controls to protect the integrity of a resource. They all fall under the umbrella term of "access controls."',
			moreInfo : 'Check out our Hot Spot Tutorial on <a href="http://searchsecuritychannel.techtarget.com/guide/hotSpotTutorial/0,296293,sid97_gci1287155_idx0_off1000,00.html" target="_blank">network access control</a>.'
		},
		{
			text : 'System documentation should be kept to ensure that the system is properly cared for, changes are controlled, and so the company knows what is on the system. Which of the following does NOT need to be in this type of documentation?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Identity of system owner',
				'Volume of transactions <br>',
				'Changes',
				'Functionality'
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'All of the other items must be in this type of documentation, but it is not important to have the amount of work that the system carries out. The number of transactions usually changes daily and is therefore usually captured through some type of automated performance tool if the company needs to keep track of this.',
			moreInfo : ''
		},
		{
			text : 'There are several ways to control access to system assets. Which of the following provides the most protection in a public area?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Constrained user interfaces <br>',
				'Database logical view controls',
				'Discretionary access controls',
				'Role-based access controls '
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'In a public area, constrained user interfaces provide the most protection and access control. This is because when anyone and everyone can access a system, you need to reduce the amount of functionality that is visible or reachable for the individuals.',
			moreInfo : ''
		}
	]
};