var quiz = {
	questions : [
		{
			text : 'Which of the following statements describes part of the process of how a LAN switch decides to forward a frame destined for a broadcast MAC address?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'It compares the unicast destination address to the bridging, or MAC address, table.',
				'It compares the unicast source address to the bridging, or MAC address, table.',
				'It forwards the frame out all interfaces in the same VLAN except for the incoming interface.',
				'It compares the destination IP address to the destination MAC address.',
				'It compares the frame\'s incoming interface to the source MAC entry in the MAC address table.'
			],
			answer : 2,
			score : 1,
			expandedAnswer : 'A switch floods broadcast frames, multicast frames (if no multicast optimizations are enabled), and unknown unicast destination frames (frames whose destination MAC address is not in the MAC address table).',
			moreInfo : 'Read more about <a href="http://searchnetworkingchannel.techtarget.com/topics/0,295493,sid100_tax304689,00.html" target="_blank">LAN administration</a> at our topics page.'
		},
		{
			text : 'In which of the following modes of the CLI could you issue a command to reboot the switch?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'User mode',
				'Enable mode',
				'Global configuration mode',
				'Interface configuration mode'
			],
			answer : 1,
			score : 1,
			expandedAnswer : '',
			moreInfo : ''
		},
		{
			text : 'Which of the following is not required when configuring port security without sticky learning? <br> \n\n<li> a. Setting the maximum number of allowed MAC addresses on the interface with the <b>switchport port-security maximum</b> interface subcommand </li>\n<li> b. Enabling port security with the <b>switchport port-security</b> interface subcommand</li>\n<li> c. Defining the allowed MAC addresses using the <b>switchport port-security mac-address</b> interface subcommand</li>\n<li> d. All of the other answers list required commands</li>',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'A',
				'A & C',
				'B',
				'C',
				'D'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'The setting for the maximum number of MAC addresses has a default of 1, so the <b>switchport port-security maximum</b> command does not have to be configured.',
			moreInfo : ''
		},
		{
			text : 'Which of the following commands list the MAC address table entries for MAC addresses configured by port security? <br>\n<li> a. <b>show mac address-table dynamic</b></li>\n<li> b. <b>show mac address-table</b></li>\n<li> c. <b>show mac address-table static</b></li>\n<li> d. <b>show mac address-table port-security</b>',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'A & B',
				'A & C',
				'B & C',
				'B & D'
			],
			answer : 2,
			score : 1,
			expandedAnswer : 'IOS adds MAC addresses configured by the port security feature as static MAC addresses, so they do not show up in the output of the <b>show mac address-table dynamic</b> command. <b>show mac address-table port-security</b> is not a valid command.',
			moreInfo : 'Learn more about how to <a href="http://searchnetworkingchannel.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid100_gci1229202,00.html" target="_blank">keep track of MAC and IP addresses</a>.'
		},
		{
			text : 'Which of the following answers is the correct maximum speed at which two IEEE WLAN devices can send data with a particular standard?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'802.11b, using OFDM, at 54 Mbps',
				'802.11g, using OFDM, at 54 Mbps',
				'802.11a, using DSSS, at 54 Mbps',
				'802.11a, using DSSS, at 11 Mbps'
			],
			answer : 1,
			score : 1,
			expandedAnswer : '802.11a uses only OFDM, and 802.11b uses only DSSS.  802.11g runs at a maximum of 54 Mbps using OFDM encoding.',
			moreInfo : 'Read about <a href="http://searchnetworkingchannel.techtarget.com/tip/0,289483,sid100_gci1253899,00.html" target="_blank">key wireless LAN tools</a> resulting from the 802.11 standard.'
		}
	]
};