What is the difference between CHAR and VARCHAR data types?
Q1. What is the difference between CHAR and VARCHAR data types?
Answer: CHAR is fixed-length, VARCHAR is variable-length
Explanation: CHAR is a fixed-length data type, while VARCHAR is a variable-length data type, allowing for more flexible storage of strings.