Question
Computer Science Question on Programming in C
A table student has two text fields defined as below:
Name_1 varchar(20),
Name2 char(20)
If Name_1 stores value as ‘Ana' and Name2 stores value as ‘Anuj', then Name_1 will consume characters space and Name2 will consume characters space.
A
3, 20
B
20, 4
C
20, 20
D
3, 4
Answer
3, 20
Explanation
Solution
The correct option is(A): 3, 20