How to take data and display it on UI?

Also, after you display it, I want to be able to click a button to go to the next row.

Above is the information I want to display. Say we start with Questions. I want to be able to click a button to get the first question and be able to go to the next.

How do you suppose I do that?

Hi @Mishal_Mehdi

To implement the same task there are a ton of variations and it depends on what we’ve got and what we can change in the DB schema/UI.

For instance, if we need to keep these answers there should be a data table of that and when we retrieve a new Question object we have to exclude already answered questions.

But if this is just a client app where you do not need to save answers on the server and there are not so many questions you can load all of them and then display them randomly

Regards,
Vlad