Multiple Choice Test. How can I make one in Unity5?

Hi,
I need to make an old school multiple choice test.
Remember the ones with a picture and then a paragraph followed by a question and 4 or 5 possible answers to choose from.
OK, that will be an early level of an increasingly complex learning fun game.
I have done this in Google Chrome, Visual Basic, PHP and others.

In Unity there is GUI, NGUI, UI and whatever. (???) My question includes what to use but also, how to do it. And yes I am a noob at this game making stuff.

Will you share an easy way or any way to do this in the world’s best game engine? :wink:

Thanks for your time,

Steve
stevencmance@gmail.com

Using the new UGUI and a Programming language of your choice (Unityscript or C#), this should be no problem.
If you need a interoduction into the new GUI take a look at this:

I would start creating a class that contains all the necessary data for each question.
Then you can build second class that will hand the data to the UI and receives / evaluates the user inputs from the buttons.