Multiple choice technology

In objective C you can log an object to console through

  1. NSLog()

  2. Printf()

  3. System.out.println()

  4. Scanf()

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

NSLog() is the standard function for logging objects to the console in Objective-C. It works with Objective-C objects and format strings, similar to printf() but specifically designed for Cocoa/Cocoa Touch frameworks. printf() is a C function, System.out.println() is Java, and scanf() is for input.