QuizAdvanced
Utility Types: Partial, Pick & Record
Test your knowledge of TypeScript's built-in generic utility types Partial, Pick, and Record.
Given `interface User { id: number; name: string; email: string; }`, which utility type produces `{ id?: number; name?: string; email?: string; }`?