Multiple choice

Which of the following is/are the correct initialiser/s for NSNumber class in Objective C?

    • (id)initWithBool:(BOOL)value;
    • (id)initWithFloat:(float)value;
    • (id)initWithInt:(int)value;
    • (id)initWithLong:(long)value;
  1. All of these

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

Yes, all are correct.