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. Object Oriented based analogue to a function is called a...






2. NSSet...






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


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






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






6. To get the full path for a directory in the sandbox - you use the _ NSSearchPathForDirectoriesInDomains.






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


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






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






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






11. A responder is responsible for...






12. if you implemented both the setter and getter - the @synthesize method...






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






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






15. Whenever a UINavigationController is about to swap views - it sends out two messages






16. How do I implement my drawRect?






17. To load a Xib file manually - you use _






18. A view is a subclass of _






19. The integer prefix is...






20. Ready-made instances...






21. Delegation is an object oriented approach to






22. NSValue - class...






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






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






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






26. Execution of the break statement...






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






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






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


30. You use _ to implement the view






31. When do you take ownership?...






32. What does autorelease mean?






33. Reducing details to focus on the core concepts






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






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






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






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






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






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






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






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






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






43. Defining variables - three parts...






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






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






46. Three ways instances are created...






47. A function in the objective c library that simply displays or logs it's argument






48. Property List...






49. A UITableViewController can fill all three roles of...






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