var quiz = {
	questions : [
		{
			text : 'If mask 255.255.255.128 were used with a Class B network, how many subnets could exist, with how many hosts per subnet, respectively?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'256 and 256.',
				'254 and 254.',
				'62 and 1022.',
				'1022 and 62.',
				'512 and 126.',
				'126 and 510.'
			],
			answer : 4,
			score : 1,
			expandedAnswer : 'Class B networks imply 16 network bits; the mask implies 7 host bits (7 binary 0s in the mask), leaving 9 subnet bits. 2^9 yields 512 subnets, and 2^7 - 2 yields 126 hosts per subnet.',
			moreInfo : 'Learn about <a href="http://searchnetworkingchannel.techtarget.com/tip/0,289483,sid100_gci1232397,00.html" target="_blank">subnet masks</a> in this tip on IP addressing fundamentals.'
		},
		{
			text : 'Which of the following features would you typically expect to be associated with the router CLI, but not with the switch CLI?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'The <b>clock rate</b> command.',
				'The <b>ip address</b> <i>address mask</i> command.',
				'The <b>ip address dhcp</b> command.',
				'The <b>interface vlan 1</b> command.'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'Both switches and routers configure IP addresses, so the <b>ip address</b> <i>address mask</i> and the <b>ip address dhcp</b> commands could be used on both routers and switches.  The <b>interface vlan 1</b> command applies only to switches.',
			moreInfo : 'Read a more detailed explanation of <a href="http://searchsmb.techtarget.com/sDefinition/0,,sid44_gci213627,00.html" target="_blank">command line interface</a>.'
		},
		{
			text : 'Which of the following commands correctly configures a static route?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'<b>ip route 10.1.3.0 255.255.255.0 10.1.130.253</b>.',
				'<b>ip route 10.1.3.0 serial 0</b>.',
				'<b>ip route 10.1.3.0 /24 10.1.130.253</b>.',
				'<b>ip route 10.1.3.0 /24 serial 0</b>.'
			],
			answer : 0,
			score : 1,
			expandedAnswer : '',
			moreInfo : 'Learn <a href="http://searchnetworkingchannel.techtarget.com/tip/0,289483,sid100_gci1236473,00.html" target="_blank">what to consider</a> before you assign an IP address.'
		},
		{
			text : 'Which of the following is a useful command on some Microsoft OSs for discovering a host\'s current IP address and mask?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'<b>tracert</b>.',
				'<b>ipconfig /all</b>.',
				'<b>arp -a</b>.',
				'<b>ipconfig /displaydns</b>.'
			],
			answer : 1,
			score : 1,
			expandedAnswer : '',
			moreInfo : 'Learn other useful IP addressing tips at our <a href="http://searchnetworkingchannel.techtarget.com/generic/0,295582,sid100_gci1229987,00.html" target="_blank">Learning Guide</a>.'
		}
	]
};