Click here to Skip to main content
15,911,531 members
Please Sign up or sign in to vote.
1.00/5 (4 votes)
See more:
C#
Campus is one of the leading private institutes situated in Australia, offering MBA programs in partnership with Wimble University – UK. During the month of February and September there are lots of candidates inquire about their MBA programs, as a result the institute is now requires an inquiry system to save and search details about the inquirers to convert potential inquirers into registrations. The following are the details of the inquirer that need to be stored in the system.
•	Inquiry Number
•	Inquirer Name
•	Date of Inquiry
•	Address
•	Telephone No
•	Qualification
•	Email Address
•	Age
Posted

As I assume, this a homework; it won't entertained here.
If you expect us to do your homework, that's not going to work. There's a pretty good reason behind this: "You won't be learn anything, if you expect others do your work for you".

You can try something on your own at first and when you stuck anywhere, anyone from here would do his/her best to help you out. But don't directly ask for the source code.

Read the Code Project Quick Answers FAQ[^] first :)

-KR
 
Share this answer
 
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.

Try it yourself, you may find it is not as difficult as you think!

If you meet a specific problem, then please ask about that and we will do our best to help. But we aren't going to do it all for you!
 
Share this answer
 
As always you need to break down the assignment into smaller parts and then find a solution for each part.

In this case you can think in terms like this:

1. Create a structure that will contain the required information
This can be a struct or a class, both approaches are possible but a class leads to better encapsulation.
For example you can have methods to serialize and deserialize the data and also for displaying the data.

2. How should the user input data?
If many inquirers will be registered in the same session you need to loop so the user can start to input the next set of data.

3. How should you save the data?
Probably in a file, but should it be a text file or as structured binary data?
You also need to read back the data, so chose a format that is easy both to read and write.

That should get you started, I think.
 
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