The maximum collations a character set can have is . . . . . . . .
A. 0
B. 1
C. 2
D. more than 1
Answer: Option D
Solution (By Examveda Team)
This question is about character sets and collations in MySQL. Let's break it down:* Character set: A character set defines a set of characters (like letters, numbers, and symbols) that a database can store.
* Collation: A collation defines how those characters are sorted and compared. Think of it as a specific language setting for your data.
For example, the character set "utf8mb4" can handle a wide range of characters from different languages. However, it can have several collations like "utf8mb4_general_ci" (case-insensitive) or "utf8mb4_unicode_ci" (case-insensitive and uses Unicode rules).
So, the answer is Option D: more than 1. A character set can have multiple collations to handle different sorting and comparison needs.
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network
Join The Discussion