Question:A company has the following departments:
Finance, Accounts, Human Resources, Administration
There is a table named Company having a column named Department, and the above values are stored in that column.
What will be the result of the following query?
Select Department from Company where Department < 'Finance' 
A The query will return "Accounts, Human Resource" 
B The query will return "Accounts, Administration ,Human Resource" 
C The query will return "Administration" 
D Strings cannot be compared using the < operator 
E The query will return "Accounts, Administration"