Hi,
I have created free apex cloud account. I want to create a simple quiz application
So I have two tables
Create Table Question_Bank(
Question_Id Number (5) Primary Key ,
Question_Description Varchar2(1000)
)
Create Table Question_Choices
(
Question_Choice_Pk Number (5) Primary Key,
Question_Id Number(5) References Question_Bank(Question_Id),
Question_Choice_Id Number(1),
Question_Choice_Description Varchar2(200),
Is_Correct Varchar(1) Default 'N',
Explanation Varchar2(500)
)
One Question will have 4 choices . I want to display one question per page and user can select one of answer as his selection.
So far I have created master/detail form but master is displaying quite a few records so how do I only display only 1 row. I need to give radio button for each in detail and need to store what answer has selected.
Is Master/Detail correct way to do this or would be it master/detail report which option to provide radio button for selection of answer.