R
R
Romanchitoz2019-03-16 17:11:47
ASP.NET
Romanchitoz, 2019-03-16 17:11:47

How to make an ASC.NET C# test generator?

I need to make a test generator, that is, the input of questions and answer options, for its further passing of the created test by the user.
Can someone send materials or links to examples of creating such a test generator?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
MrDywar Pichugin, 2019-03-16
@Dywar

It's easier to do it yourself.

class Question {
List<Answer> Answers { get; set; }
}

class Answer {
string Text;
bool isValid;
}

On metanit.com/sharp/ we read about the Entity Framework, make an application according to the entity template (create, read, delete), and add functionality. You can find videos of people making a list of books or something similar, and remake it to your liking.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question