What exactly do you need help with? Do you need help with reading the text file for the questions? If so, you should learn about FileReader.
try
{
String question = "";
FileReader reader = new FileReader(plate_techtonics.txt);
Scanner in = new Scanner(reader);
//read the file and get the question
}
catch(IOException e)
{
System.out.println("Error processing file");
}