Student
"Ponnu bio" likely refers to information about someone named Ponnu, or the scientific name of a plant. Based on the search results, "Ponnu" can be a name, a nickname, or a scientific name for a plant. It can also be used in relation to business, or even refer to a type of bio.
Answer:
Thread: Low-level, manual thread creation.ThreadPool: Managed pool of threads for short-lived tasks.Task: Higher-level abstraction for background work.Parallel: For CPU-bound parallel loops.async/await: For async I/O bound tasks.BackgroundWorker: For older WinForms/WPF apps.Use
Taskorasync/awaitin most modern code; avoid rawThreadunless necessary.