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






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






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






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






5. Proceed through the loop - jump back to the top and check again






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






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






8. What does autorelease mean?






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






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






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






12. class methods...






13. Ready-made instances...






14. UIView - designated initializer...






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


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






17. The object to which a message is sent - the receiver can be referred to as self from inside the method that is invoked






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






19. In object oriented languages - we call methods that get and set instance variables accessors - individually we call them...

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


20. Classes describe two things...






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






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






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






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






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






26. Delegation is an object oriented approach to






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






28. A view is a subclass of _






29. Reference Counting...






30. if you implemented both the setter and getter - the @synthesize method...






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






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






33. When making a tableView always...






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


35. A view is an...






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


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






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






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






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






41. Defining variables - three parts...






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






43. A responder is responsible for...






44. A function in the objective c library that simply displays or logs it's argument






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






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






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






48. NSNumber - class...






49. The integer prefix is...






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