1_ How to create and start new Task

2_ How to create and start new Task with factory

3_ How to pass parametr to a Task

4_ How to wait for a Task

5_ How to run task synchronously on the same thread

6_ Run async, return a value and wait for completion

7_ What will happen when async worker method is not called with await

8_ What will happen when async worker method is called with await, but worker code does not await

9_ When method with async signature will not run asynchronously

10_ How to call a method without async signature asynchronously from an async method

11_ How to call a method with async signature asynchronously from a non async method

12_ How to update UI from non UI thread

13_ How to cancel an async call