show/hide this revision's text 2 added 415 characters in body

Does an asynchronous call always create a new thread? What is the between the two?

EDIT:

Does an asynchronous call always create or use a new thread?

Wikipedia says:

In programming, asynchronous events are those occurring independently of the main program flow. Asynchronous actions are actions executed in a non-blocking scheme, allowing the main program flow to continue processing.

I know async calls can be done on single threads? How is this possible?

show/hide this revision's text 1

Asynchronous vs Multithreading- is there a difference?

Does an asynchronous call always create a new thread? What is the between the two?