public static void Main()
string FirstName, LastName;
int questOne, questTwo, questThree, questFour, age;
Console.Write("Enter Your First Name :");
FirstName = Console.ReadLine();
Console.Write("Enter Your Last Name :");
LastName = Console.ReadLine();
Console.WriteLine("--Please Answer the following questions honestly--");
Console.WriteLine("Are you responsible, hard working, team oriented? ");
Console.WriteLine("(type one (1) for yes and two (2) for no:");
questOne = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Are you creative, concise, willing to work for us? ");
Console.WriteLine("(type one (1) for yes and two (2) for no:");
questTwo = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Are you experienced, and mindful of your actions? ");
Console.WriteLine("(type one (1) for yes and two (2) for no:");
questThree = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Are you honest, kind, patient? ");
Console.WriteLine("(type one (1) for yes and two (2) for no:");
questFour = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Please check if we got your answers correct:");
Console.WriteLine("First Name:" + FirstName);
Console.WriteLine("Lasr Name:" + LastName);
Console.WriteLine("1. Yes");
else if (questOne == 2 ){
Console.WriteLine("1. No");
Console.WriteLine("2. Yes");
else if (questTwo == 2 ){
Console.WriteLine("2. No");
Console.WriteLine("3. Yes");
else if (questThree == 2 ){
Console.WriteLine("3. No");
Console.WriteLine("4. Yes");
Console.WriteLine("This is the last question, please enter your age: ");
age = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Thank you for answering form, your application form will be forwarded to the manager and an email will be sent to notify if you passed or not, have a good day");
Console.WriteLine("You are still a minor and you are not allowed to apply");
else if (questFour == 2 ){
Console.WriteLine("4. No");
Console.WriteLine("This is the last question, please enter your age: ");
age = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Thank you for answering form, your application form will be forwarded to the manager and an email will be sent to notify if you passed or not, have a good day");
Console.WriteLine("You are still a minor and you are not allowed to apply");