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 class picks one _ as it's designated initializer....






2. Reference Counting...






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






4. NSArray - important methods...






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






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






7. When making a tableView always...






8. Hold data and know nothing about the user interface






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






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






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


12. Defining variables - three parts...






13. A view represents a _ area






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






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






16. A view is a subclass of _






17. Number one use of protocols in iOS...






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






19. At the top of any implementation file...






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






21. A view exists within a hierarchy. The window (an instance of UIWindow) is a view and the root of the hierarchy. It has _ (that appear on the window). Those views can also have _.






22. id is a...






23. Why properties?






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






25. Also if you send the NSObject the _ message - you own that object.






26. UIImageView is used to...






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






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


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


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






31. A view is an...






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






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






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






35. @property - is using methods...






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






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






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






39. NSDate - class...






40. Any individual object belonging to any class...






41. A responder is responsible for...






42. You use _ to implement the view






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






44. Ready-made instances...






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






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






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


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






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






50. super - is used...