A developer needs to convert a JSON string representing a list of Account objects into an actual Apex List of Accounts. Which method should be used?
This correctly parses the JSON string into a typed List of Accounts.
Why this answer
JSON.deserialize() or JSON.deserializeUntyped() are used to parse JSON, and JSON.deserialize(jsonString, TargetType.class) deserializes into strongly typed objects.