What geometric symbol is used in an Entity-Relationship (ER) diagram to represent a relationship between entities? MCQ with Answer and Explanation

What geometric symbol is used in an Entity-Relationship (ER) diagram to represent a relationship between entities?
A. Rectangle
B. Circle
C. Oval
D. Diamond
Answer: Option D
Solution (By JKExamLibrary)
Diamonds are utilized in ER diagrams to depict relationships between two or more entities.

This question belongs to: Computer Database Management System (DBMS)

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Database Management System (DBMS) Questions

Question #1 Report Error
In the context of databases, what is a 'tuple'?
A. A key constraint
B. A table itself
C. A column of a table
D. A row of a table

Correct Answer: Option D


Explanation:
In relational databases, a tuple is a single row or record of a table.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
Which SQL command is used to permanently remove an entire table structure along with all its data from the database?
A. REMOVE
B. DELETE
C. DROP
D. TRUNCATE

Correct Answer: Option C


Explanation:
The DROP command is a DDL statement that completely removes a table's structure, definition, and all its associated data from the database.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
What is the default behavior of a foreign key when a referenced row is deleted?
A. Depends on the ON DELETE action specified
B. Cascade delete
C. Restrict
D. Set null

Correct Answer: Option A


Explanation:
The behavior is defined by the ON DELETE rule (CASCADE, SET NULL, RESTRICT, NO ACTION) specified in the foreign key constraint.

This question belongs to: Computer Database Management System (DBMS)