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. Each _ has a 'designated' initializer method....






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






3. super - is used...






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






5. @property - is using methods...






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






7. In Cocoa Touch - the table view asks another object _ what it should display...






8. Reference Counting...






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


10. NSArray - important methods...






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






12. Three ways instances are created...






13. UITableViewController is a subclass of...






14. Property List...






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






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






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






18. Dynamic binding means that when we call a certain object's method - and there are several _ of that method - the right one is figured out at runtime.






19. id is a...






20. Classes describe two things...






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






22. A block of statements identified by a name that can accept one or more arguments passed to it by value and can optionally return a value






23. A collection object - an ordered list of objects that can be accesed by an index






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






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






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






27. A responder is responsible for...






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






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






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






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






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






33. Reducing details to focus on the core concepts






34. Ready-made instances...






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






36. In Objective C - the name of a setter method is set plus the name of the instance variable it is changing - for example PossessionName would be...






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


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






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






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






41. Primitives and C Structures...






42. UIImageView is used to...






43. It's class is sent the message alloc - which creates an instance of that class and returns a pointer to it - and then that instance is sent the message init - which gives its instance variables initial values.






44. Name of the method to be executed






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






46. We can use dot notation to reference...

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


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






48. Hold data and know nothing about the user interface






49. NSDictionary...






50. Class methods typically either create