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. 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 _.






2. Reference Counting...






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






4. Execution of the break statement...






5. NSValue - class...






6. Why properties?






7. Variable names tend to start with a _ letter; class names tend to start with an _ letter.






8. A callback is a function that is supplied in advance of an event - and...






9. Use of class methods - there are three...






10. Class methods typically either create






11. What happens when the last owner calls release?

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


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






13. You use _ to implement the view






14. id is a...






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






16. NSDate - class...






17. Hold data and know nothing about the user interface






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






19. In object oriented languages - we call methods that get and set instance variables accessors - individually we call them...

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


20. Center and frame are used to _ your view






21. A pointer to the object being asked to execute a method






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






23. Order of the declarations for methods. _ come first - followed by _ - followed by any other methods...






24. @property declares - and _ implements the setter and getter...






25. Each individual instance is a bundle of data that it maintains. Typically that data is private - which means that it's encapsulated as well; no other object knows what that data is or in what form it is kept. The only way to discover from outside wha






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






27. SomeClass* aVariable = [[SomeClass alloc] init]; is an example of what kind of instance?






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






29. NSDictionary...






30. A view is an...






31. Each _ has a 'designated' initializer method....






32. When an object is removed from an NSMutableArray - that object is sent the message release;...






33. The root view controller typically creates the next view controller - and the next _ creates the one after that






34. For view controllers that are closely related - like a table view controller and its detail view controller - you can simply give them _ that point to each other.






35. The integer prefix is...






36. NSString objects are usually sent _ rather than _...






37. UITableViewController is a subclass of...






38. When do we need to release our outlets?

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


39. class methods...






40. The notion that the data for an object is stored in it's instance variables and is accessed only by the objects methods. This maintains the integrity of the data.






41. Asking a class or object to execute a method






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






43. A view represents a _ area






44. If a break statement is executed from within a set of nested loops...






45. Each class picks one _ as it's designated initializer....






46. After accessors have been defined in the header file...






47. In a class method you cannot access...






48. Origin of a view's coordinate system is _ left






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






50. When making a tableView always...