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. Also if you send the NSObject the _ message - you own that object.






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






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






4. Object Oriented based analogue to a function is called a...






5. Asking a class or object to execute a method






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






7. Execution of the break statement...






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






9. Files Owner...






10. What does autorelease mean?






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






12. UIImageView is used to...






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






14. Ready-made instances...






15. Delegation is an object oriented approach to






16. Classes describe two things...






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






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


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






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






21. Class methods typically either create






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






23. Hold data and know nothing about the user interface






24. When an NSMutableArray is deallocated - it sends...






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






26. Prefixing a character string with an @ symbol [specific - NSString class]...






27. NSArray - important methods...






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






29. Designated initializer makes sure that every...






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






31. Typically the designated initializer has parameters for the most important and frequently used _ of an object






32. UITableViewController is a subclass of...






33. In general - class methods tend to be factory methods - that is...






34. Also - because arrays only hold a pointer to an object...






35. @property - is using methods...






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






37. When do you take ownership?...






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






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






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






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






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






43. When the message endEditing: is sent to a view - if it or any of its subviews or currently the _ - it will resign its first responder statues - and the keyboard will be dismissed.






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






45. A view represents a _ area






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






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






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






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






50. NSValue - class...