Question:A company has the following departments: Marketing , Designing , Production , Packing What will be the result of the following query? select * from table where department < 'Marketing';
A The query will return " Designing , Packing "
B The query will return " Designing , production ,Packing "
C The query will return "Packing"
D Strings cannot be compared using < operator
E The query will return " Designing "
+ AnswerE
+ Report