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. Whenever a UINavigationController is about to swap views - it sends out two messages






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






3. Property List...






4. Proceed through the loop - jump back to the top and check again






5. Categories are an Objective C way to add _ to an existing class without subclassing






6. Name of the new class - it's superclass - the instance variables that each instance of this class has - and any methods this class implements






7. A set of variables and associated methods. An object can be sent messages to cause one of its methods to be executed.






8. class methods...






9. id is a...






10. When overriding a method - all you need to is _ - you do not need to declare it in the header file because it has already been declared by the superclass....






11. A view is a subclass of _






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






13. The class is responsible for what instance variables the instance has - but not the _ of those variables.






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






15. Delegation is an object oriented approach to






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






17. Ready-made instances...






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






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






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






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






22. super - is used...






23. NSString* s2 = [s uppercase String]; Is an example of what kind of instance?






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


25. Number one use of protocols in iOS...






26. Center and frame are used to _ your view






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






28. Why properties?






29. [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.






30. When you send a message to _ - you are sending a message to _ - but demanding that the search for the method begin at the superclass....






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






32. Reference Counting...






33. Reducing details to focus on the core concepts






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






35. In the last line of an init method...






36. If you have extra work you want to do on the view...






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






38. When do you take ownership?...






39. NSSet...






40. Execution of the break statement...






41. Designated initializer makes sure that every...






42. A view represents a _ area






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


44. Objective C only allows for single inheritance - so in regards to class you only ever see the following pattern






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






46. The designated initializer calls the _ designated initializer....

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


47. In object oriented languages - we call methods that get and set instance variables

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


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






49. Core foundation classes are prefixed with _ and suffixed with _






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