package testtool.data;

public class Data {
	public static Object[] test_column_names = 
	{"Difficulty", "Class", "Type", "Time", "Question Body"};

	public static Object[][] generated_test_data = {
	{"Hard", "CSC101", "Code Snippet", "5", "Write the code to convert from degrees C to F"},
	{"Easy", "CSC101", "Short Response", "2", "Why is there an & in scanf()?"},
	{"Easy", "CSC101", "Short Response", "1", "Why shouldn't you use gets()"},
	{"Hard", "CSC101", "Code Snippet", "5", "Write the code to initialize an array of characters"}
};
	public static Object[][] question_bank_data = {
		{"Moderate", "CSC101", "MChoice", "3", "Select what this program will output from the following"},
		{"Easy", "CSC101", "SAnswer", "1", "What memory address does x point to"},
		{"Hard", "CSC101", "Code Snippet", "5", "Write the code to convert from degrees C to F"},
		{"Hard", "CSC101", "MChoice", "5", "Select the correct way to print Hello World"},
		{"Hard", "CSC101", "Code Snippet", "5", "Write the code to initialize an array of characters"},
		{"Moderate", "CSC101", "MChoice", "3", "Select the correct library function from the following"},
		{"Easy", "CSC101", "Short Response", "2", "Why is there an & in scanf()?"},
		{"Easy", "CSC101", "Short Response", "1", "Why shouldn't you use gets()"},
	};	
	public static Object[][] repository_data = {
		{"Moderate", "CSC101", "MChoice", "3", "Select what this program will output from the following"},
		{"Easy", "CSC101", "SAnswer", "1", "What memory address does x point to"},
		{"Hard", "CSC101", "Code Snippet", "5", "Write the code to convert from degrees C to F"},
		{"Hard", "CSC101", "MChoice", "5", "Select the correct way to print Hello World"},
		{"Hard", "CSC101", "Code Snippet", "5", "Write the code to initialize an array of characters"},
		{"Moderate", "CSC101", "MChoice", "3", "Select the correct library function from the following"},
		{"Easy", "CSC101", "Short Response", "2", "Why is there an & in scanf()?"},
		{"Easy", "CSC101", "Short Response", "1", "Why shouldn't you use gets()"},
		
		{"Moderate", "CSC102", "MChoice", "3", "Select what this program will output from the following"},
		{"Easy", "CSC102", "Short Response", "2", "What does object oriented mean?"},
		{"Hard", "CSC102", "Code Snippet", "5", "Write the code to convert from degrees C to F"},
		{"Hard", "CSC102", "MChoice", "5", "Select the correct way to print Hello World"},
		
		{"Hard", "CSC103", "Code Snippet", "5", "Write the code to initialize a linked list of characters"},
		{"Moderate", "CSC103", "MChoice", "3", "Select the correct library function from the following"},
		{"Easy", "CSC103", "Short Response", "2", "What is a hash table?"},
		{"Easy", "CSC103", "Short Response", "1", "Do a bubble sort on the following list"},
	};	
}