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. Defining variables - three parts...






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






3. UIViewController has several methods that get called at certain times...






4. Ready-made instances...






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






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






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






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






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


10. UITableViewController is a subclass of...






11. Primitives and C Structures...






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






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






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






15. class methods...






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






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


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






19. A method in a _ is required unless its preceded by an @optional.






20. When making a tableView always...






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






22. You use _ to implement the view






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






24. Execution of the break statement...






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






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






27. Delegation is an object oriented approach to






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


29. A view is a subclass of _






30. Hold data and know nothing about the user interface






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






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






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






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






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






36. NSArray - important methods...






37. A view represents a _ area






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


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






40. Property List...






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






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






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






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






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






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






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






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






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






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