Click here to Skip to main content
15,918,193 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hey hello,i have to create an online examination system in csharp .net using MS SQL server 2008.in which server has a database of questions and random question is selected from
the database and the corresponding answer from the four radiobuttos is selected and result of particular student is maintained that-how many questions he applied,and how many of them are corrrect.
also a time should be displayed when login or user can set the time at the beginning.How can i do that ??.I don't know from where to start.since i am completely new in c sharp .Please help...
Posted
Comments
Suresh Suthar 18-Aug-11 5:57am    
Why you need this?
And if you are a new programmer and dont know anything about C#, you should learn the language first.
There thousands of articles and ebooks on internet.
udayworld122 18-Aug-11 7:32am    
I have decided to do this project for my college in this semester.I have previously created a project in csharp that is of "web Browser".so i know few about c sharp or visual studio but i cannot get the complete idea about the project..that is which tables to create in the database or how to maintain the database of each login user as well as it's results...Please if you have some idea or code about this then suggest me...Thank You.
Simon_Whale 18-Aug-11 8:58am    
To give you a pointer you will need to create a table for your Questions, Answers, participant, participants answers

I think You should start from database designing and try to execute queries on database before on application.
For each question there should be an auto generated ID.
To chose a random questions you can use Random class to generate numbers and you can use this number as question ID in where condition of SQL query.
 
Share this answer
 
1. Database communication

I know the article is old but the principles are the same.

ADO.NET for beginners[^]

This will teach you how to communicate with the database.

2. Form / page layout

That I'm afraid we can't tell you how to do it as you know what is needed to make the application successful.

But start with this msdn site MSDN Development for beginners[^]

That should be a good starting point for you. If still you then get errors or need help / direction in your design then ask, but provide as much relevant information as you can and people here will help were they can.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900