C Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesC Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old December 1st, 2012, 01:57 PM
amirforum amirforum is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 3 amirforum User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 17 m 12 sec
Reputation Power: 0
Suggestion for a quiz application

hi,
I want to develop an application with below specifications:
1.A quiz application for example about 100 tests
2.User can enter name, family and other specs and the test result will be saved with user data
3.Find, edit, delete, ... for users can be done by admin
4.Run on any windows platform from windows 98 to win 7
5.No need for high resources (cpu, ram, ...)
6.No need for extra applications installed (like sql, ...)

which programming language, database and compiler you suggest me to use?

best regards,

Reply With Quote
  #2  
Old December 1st, 2012, 05:47 PM
MrFujin's Avatar
MrFujin MrFujin is offline
Lord of the Dance
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Oct 2003
Posts: 3,129 MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level)MrFujin User rank is General 11st Grade (Above 100000 Reputation Level) 
Time spent in forums: 2 Months 2 Weeks 23 h 6 m 34 sec
Reputation Power: 1736
A few of the languages that should work are:
A. Assembly
B. C/C++
C. C# (.NET)
D. Java

Some are good for resource handling/optimization of cpu and ram (A and B) while others (C and D) are "easier" to work with.
Just be careful with the version if you have to support windows 98

You ask about which database to use: this will be limited because of the sixth requirement.
You can take a look at SQLlite (http://www.sqlite.org/),.

Reply With Quote
  #3  
Old December 1st, 2012, 06:22 PM
b49P23TIvg's Avatar
b49P23TIvg b49P23TIvg is offline
Contributing User
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Aug 2011
Posts: 3,372 b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 2 Weeks 3 Days 11 h 41 m 46 sec
Reputation Power: 383
Is it a math test? Are there pictures? Does the computer via an algorithm create new questions? Are there seven thousand questions of which the quiz-taker gets a random selection of one hundred? Are there various categories? Does the administrator need a password? Are the files encrypted? How many will take this test?
__________________
[code]Code tags[/code] are essential for python code!

Reply With Quote
  #4  
Old December 2nd, 2012, 02:48 AM
amirforum amirforum is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 3 amirforum User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 17 m 12 sec
Reputation Power: 0
Thanks for the answer,

No, it's a psychological test. There's a fixed number of predefiend questions for example 50 question that have just text with four options to answer.
There should be two users, one for get test from users that can be add a user specs and ask him to that can define users and edit them and ...
No encryption needed

Quote:
Originally Posted by b49P23TIvg
Is it a math test? Are there pictures? Does the computer via an algorithm create new questions? Are there seven thousand questions of which the quiz-taker gets a random selection of one hundred? Are there various categories? Does the administrator need a password? Are the files encrypted? How many will take this test?

Reply With Quote
  #5  
Old December 2nd, 2012, 09:56 AM
amirforum amirforum is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 3 amirforum User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 17 m 12 sec
Reputation Power: 0
I'm familiar with C/C++ so for a new experience I'll try C# and will check sqllite, Thanks

Quote:
Originally Posted by MrFujin
A few of the languages that should work are:
A. Assembly
B. C/C++
C. C# (.NET)
D. Java

Some are good for resource handling/optimization of cpu and ram (A and B) while others (C and D) are "easier" to work with.
Just be careful with the version if you have to support windows 98

You ask about which database to use: this will be limited because of the sixth requirement.
You can take a look at SQLlite ,.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesC Programming > Suggestion for a quiz application

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap