Good day, i will try and explain myself here. i am trying to create like a quiz system where an image is mapped to an answer and other wrong answers are provided. An example is like this:
<Image> <answer A> <answer B> <answer c>
I was thinking of using a hash map for the image and correct answer, and maybe an array or an arrayList for the other wrong answers. But i don't know if hash maps works well this way.
what would be the best solution to go about this or any other ideas?
by the way, i would be inputing the values myself and the Image is stored in a resource so its not being downloaded. Thank you