Multiple choice

Which of the following is an incorrect statement about Automatic Reference Counting (ARC) in Objective C?

  1. The release and retain of the methods are done automatically.

  2. The release and retain of the methods are done automatically as well as manually.

  3. There is low memory leak.

  4. Reference counting works in this approach.

  5. It uses the same reference counting system as (Manual Retain-Release) MRR.

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

This is false as the manually release and retain of the methods is not possible.