// Now check that the question is correctly stored in the database
boolean questionFound = myTools.dataSearch("Question", "id", newQuestionID);
// Now check that the answers are correctly stored in the database
boolean trueAnswerFound = myTools.dataSearch("Answer", "id", trueAnswerId);
boolean falseAnswerFound = myTools.dataSearch("Answer", "id", falseAnswerId);
// Now check, if not all the database checks are true, return false status
if(!(questionFound && trueAnswerFound && falseAnswerFound)){