A developer has the following query: Contact c = [SELECT id, firstname, lastname, email FROM Contact WHERE lastname = 'Smith']; What does the query return if there is no Contact with the last name 'Smith'?
- A contact initialized to null.
- An error that no rows are found.
- An empty List of Contacts.
- A Contact with empty values.
Show Answer Next Question