Test your basic knowledge |

iOS 5 App Development Objective C

Subjects : it-skills, apple
Instructions:
  • Answer 50 questions in 15 minutes.
  • If you are not ready to take this test, you can study here.
  • Match each statement with the correct term.
  • Don't refresh. All questions and answers are randomly picked and ordered every time you load a test.

This is a study tool. The 3 wrong answers for each question are randomly chosen from answers to other questions. So, you might find at times the answers obvious, but you will see it re-enforces your understanding as you take the test each time.
1. Just a floating point number - but we always use it for graphics.






2. Reducing details to focus on the core concepts






3. Inside a method - _ is an implicit local variable. Typically - _ is used so that an object can send a message to itself....






4. How do I implement my drawRect?






5. The object to which a message is sent - the receiver can be referred to as self from inside the method that is invoked






6. Views have three properties related to their location and size: @property _ _;






7. When making a tableView always...






8. Property List...






9. NSArray - class...






10. Keep view and model objects in sync - control the 'flow' of the application - and save the model objects out to the filesystem






11. Never access a view controller's view in that...

Warning: Invalid argument supplied for foreach() in /var/www/html/basicversity.com/show_quiz.php on line 183


12. A UITableView usually needs three different pieces...






13. NSDate - class...






14. Primitives and C Structures...






15. NSArray - important methods...






16. A view is an...






17. Class methods do not operate on an _ or have any access to _ variables....






18. You use _ to implement the view






19. A command directed to an object is called an...






20. Execution of the break statement...






21. In general - in Objective-C - a reference to an instance is a _ - and the name of the data type of what's at the far end of that pointer is the name of the instances's _.






22. In Objective C arrays can hold only...






23. A class inherits all _ from its superclass and can add as many as it wants for its own purposes....






24. Values to be supplied as the parameters to the method






25. The only reason to temporarily own an object - is...






26. A delegate is a pointer to an object with a set of methods the delegate-holder knows how to call. In other words - it's _ from a later created object






27. A view represents a _ area






28. A message is always contained in square brackets - and has three parts






29. NSSet...






30. When an object is added to a NSMutableArray - that object is sent the message to retain;...






31. If a class declares a _ that is different from its superclass - you must override the superclass' _ to call the new _...






32. [Instance Variables] The code it gets from its class and in a sense is shared with all other instances of that class - but the _ belong to it alone.






33. UIImageView is used to...






34. Ready-made instances...






35. At the top of any implementation file...






36. Instance Variables by default are called @protected meaning...






37. initWithFrame: the designated initializer for UIView gives the view






38. If the view has no subviews - create it programmatically; if it has subviews






39. Any individual object belonging to any class...






40. When a view controller presents a modal view controller - the _ of the modal view controller is set to be the parent of the presenting controller






41. If you aren't going to initialize an instance reference pointer at the moment you declare it by assigning a real value - it's a good idea to assign it _.






42. Name of the method to be executed






43. NSDictionary...






44. UIViewController has several methods that get called at certain times...






45. Any other initializer a class has calls the _ designated initializer....

Warning: Invalid argument supplied for foreach() in /var/www/html/basicversity.com/show_quiz.php on line 183


46. Class methods typically either create






47. class methods...






48. In any application with UINavigationController - the navigation controller...






49. Archiving works by creating an instance of _ - which is essentially just a container for data - and placing objects and their data inside it.






50. Also if you send the NSObject the _ message - you own that object.