Please! Help me system design for the following app.

Posted by Upstairs-Ad221@reddit | ExperiencedDevs | View on Reddit | 2 comments

I am building a quiz/mocktest platform. For this i have large sets of json data. Each Json have questions ranging from 50 to 10000. Now what would be a better option to store and retrieve the data and present it to the users? Current solutions i have implemented are as follows:
1. Jsons stored in blob storage account in azure -> fetched to backend -> send to users on request.
2. store all the questions in database table rows and retrieve and respond as it is.

What would be other options?