Intermediate Flutter
Q62 / 100

What is an Isolate in Dart/Flutter?

Correct! Well done.

Incorrect.

The correct answer is B) An independent worker with its own memory heap; Dart's unit of concurrency with no shared memory

B

Correct Answer

An independent worker with its own memory heap; Dart's unit of concurrency with no shared memory

Explanation

Dart Isolates are independent workers that run concurrently with their own memory. Unlike threads, they do not share memory — they communicate via SendPort/ReceivePort message passing. Use compute() for a simple one-off Isolate.

Progress
62/100