1.

The columns containing a binary value that include null bytes will print properly using the %s printf() format specifier.(a) True(b) FalseI have been asked this question during an interview.My question is taken from Status Variables topic in section System, Status and User Variables of MySQL

Answer»

Correct option is (b) False

For explanation: The columns containing binary value including null BYTES do not print properly using the %s printf() FORMAT SPECIFIER. printf() EXPECTS a null terminated string. It prints the column value only up to the first null byte.



Discussion

No Comment Found

Related InterviewSolutions