Some XYZ company is arranging for online aptitude tests. Draw
detailed E-R diagram for the same..
Answer / Vashu Rajput
Creating an Entity-Relationship (E-R) diagram for an online aptitude test system requires defining various entities, attributes, and relationships between them. Here's a simple example of such a diagram:
1. TestTaker (UserID, Name, Email, Password, Address)
2. Test (TestID, Name, Description, DifficultyLevel, StartTime, EndTime)
3. Question (QuestionID, TestID, SequenceNo, QuestionText, AnswerA, AnswerB, AnswerC, CorrectAnswer)
4. Result (ResultID, UserID, TestID, Score, Date)
5. Relationships:
a) A user can take multiple tests (TestTaker --many-- Takes_Tests --> Test).
b) A test has multiple questions (Test --one-- Contains_Questions --> Question).
c) A user submits one result for each test they take (TestTaker --one-- Submits_Result --> Result, Test --one-- Has_Result --> Result).
| Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between promise and callback?
What are the main functions performed by javascript statements?
Why is javascript used for web pages?
How to shift and unshift using javascript?
Create a new javascript object with the keys of “fname” equal to your first name, “lname” equal to your last name, and “fcolors” equal to and array of 3 of your favorite colors. Assign this object to a variable called “me” and log it to the console.
How to convert a string to lowercase?
discuss scoping in javascript?
Where do you write javascript?
What are the data types supported by javascript?
What is difference between scripting and programming?
Is it possible to assign a php variable to javascript ? And also is it possible to fetch the page contents if the url is not under our control ?
What are the different objects used in javascripts?