var init = { 
     'questions': [ 
       {
           'question': 
           'Which operating systems support Android SDK Development?',
           'answers': 
           ['Windows',
            'Mac', 
            'Linux', 
            'All of the above'],
       	   'correctAnswer': 4
       },
       {
           'question': 
           'Which integrated development environment (IDE) is best suited for beginner Android developers?',
           'answers': 
           ['Microsoft Visual Studio',
            'Eclipse', 
            'JBuilder', 
            'AndroidDev'],
       	   'correctAnswer': 2
       },
       {
           'question': 
           'True or False: The Android Tools and SDKs are componentized?',
           'answers': 
           ['True',
            'False'],
       	   'correctAnswer': 1
       },
       {
           'question': 
           'What tool can developers use to download Android SDK versions, samples, and other development tools for app development?',
           'answers': 
           ['The Android Tool Manager',
            'The Android Developer Plug-in', 
            'And-Doc', 
            'The Android SDK Manager'],
       	   'correctAnswer': 4
       },
       {
           'question': 
           'True or False: Third Party tools and libraries are not available from within the Android SDK Manager?',
           'answers': 
           ['True',
            'False'],
       	   'correctAnswer': 2
       },
       {
           'question': 
           'What is an AVD?',
           'answers': 
           ['An Android Virus Definition',
            'A set of device configuration details for use with the Android emulator', 
            'An Android code versioning module', 
            'A file used to define an Android app’s name, icon, and other settings'],
       	   'correctAnswer': 2
       },
       {
           'question': 
           'True or False? You will only need to create one AVD in order to debug your applications',
           'answers': 
           ['True',
            'False'],
       	   'correctAnswer': 2
       },
       {
           'question': 
           'What is one way can you connect Android devices to your development environment for debugging?',
           'answers': 
           ['Port 411',
            'DebugLink technology', 
            'USB', 
            'None of the above. You can only debug your apps in the emulator, not devices.'],
       	   'correctAnswer': 3
       },
       {
           'question': 
           'If your app is building but is not installing properly on your device, what is the most likely reason?',
           'answers': 
           ['The app is built for an Android SDK version that is not compatible with your device.',
            'The device is not connected to your development machine properly.', 
            'The device settings have not enabled USB debugging.', 
            'All of the above.'],
       	   'correctAnswer': 4
       },
       {
           'question': 
           'What does ADB stand for?',
           'answers': 
           ['Android Data Bot',
            'Android Debug Bridge', 
            'Android Device Bridge', 
            'Active Digital Brain'],
       	   'correctAnswer': 2
       },
       {
           'question': 
           'True or False: The Android Sample Applications are organized into games and productivity apps?',
           'answers': 
           ['True',
            'False'],
       	   'correctAnswer': 2
       },
       {
           'question': 
           'The Android sample applications are worth reviewing for what reason(s)?',
           'answers': 
           ['They illustrate how to use different Android APIs.',
            'They are well-documented.', 
            'They often demonstrate coding best practices from the Android team.', 
            'Both A and C'],
       	   'correctAnswer': 4
       },
       {
           'question': 
           'In order to create a Hello World project in Eclipse, which of the following pieces of information do you need to supply?',
           'answers': 
           ['Specify the version of the Android SDK you want to build against.',
            'Specify the name of the application.', 
            'Specify its launcher icon, or use the default.', 
            'All of the above.'],
       	   'correctAnswer': 4
       },
       {
           'question': 
           'You can create fragment-aware Hello World Android projects using the Eclipse Android Project wizard?',
           'answers': 
           ['True',
            'False'],
       	   'correctAnswer': 1
       } // no comma after the last question.
     ],     
	  'resultComments' :  
	  {
		     perfect: 'You\'re awesome enough to just walk into Mordor, aren&#39;t you?',
			 excellent: 'My PRECIOUS!! You were outstanding!',
			 good: 'Good enough, but beware the power of the ring.',
			 average: 'An orc would have performed just as good as you!',
			 bad: 'Is your mind poisoned by the ring?',
			 poor: 'Is your mind poisoned by the ring?',
			 worst: 'What is this new trolling?!'
	  }
};