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. Archiving works by creating an instance of _ - which is essentially just a container for data - and placing objects and their data inside it.






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






3. NSDate - class...






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






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






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






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






8. Designated initializer makes sure that every...






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






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






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






12. Delegation is an object oriented approach to






13. UIView - designated initializer...






14. NSDictionary...






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






16. Only exists within the statement block there defined - outside of the block is fine






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






18. Property List...






19. NSNumber - class...






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


21. All objects are accessed using...






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






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






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






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






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






27. class methods...






28. When making a tableView always...






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






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






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


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






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


34. An instance is a device for maintaining state. It's a box for _ of data.






35. Center and frame are used to _ your view






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






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






38. NSArray - class...






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






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






41. A responder is responsible for...






42. The integer prefix is...






43. Reference Counting...






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






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






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






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






48. Name of the method to be executed






49. Three ways instances are created...






50. super - is used...