So this is my first baby step here..ever (havent joined any forum..of any kind... before this)
I am not very comfortable with Java.. I am still trying to come in terms with it.. I thought I would continue learning it at my standard slow pace, until I entered this start-up company, and since then, I sleep, dream Java only.
I am working on Eclipse platform. Now the company where I work in basically provides online assessments for recruitment purposes to companies. So, as expected, we need constant inflow of new questions to keep on adding to our question bank.
Now comes the main part.
We keep getting new content(questions) from 'authors'..(basically graduate students, who frame up the questions, and are paid in return if the content is good and not plagiarized). But, before that, I basically have to prune and and check the questions and answers that they have sent.
Now I was wondering if I could just develop a small Java automation feature, where in the existing values of a question are changed automatically, thus generating a new question and answer.
I'll provide an easy example to make more sense. Suppose the following question-
"There are 5 apples in a basket. There are 10 such baskets. So how many apples are there in total?"
So I am wanting a code, that changes the mathematical values at back end, to generate a similar new question, like-
"There are 8 apples in a basket. There are 5 such baskets. So how many apples are there in total?"
I understand we can provide an excel sheet with all the relevant numbers, that can be picked up by the Java code randomly, to keep generating new qstns like this. I hope I am clear with the problem. This way, I wont have to keep contacting authors for new qstns all the time, and then prune and check their answers manually. I would just need one question in a particular format, and then I can keep generating new questions with different values. (I guess this can work with math questions as of now)
Can anyone please guide me through this confusing thought??