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. A class inherits all _ from its superclass and can add as many as it wants for its own purposes....






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






3. All objects are accessed using...






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






5. Primitives and C Structures...






6. Delegation is an object oriented approach to






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


8. Class methods typically either create






9. In the last line of an init method...






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


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






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






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






14. Hold data and know nothing about the user interface






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


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






17. A responder is responsible for...






18. Ready-made instances...






19. NSArray - class...






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






21. When making a tableView always...






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






23. A view represents a _ area






24. A view is a subclass of _






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






26. Just a floating point number - but we always use it for graphics.






27. What does autorelease mean?






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






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






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






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






32. Reducing details to focus on the core concepts






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






34. id is a...






35. The integer prefix is...






36. Asking a class or object to execute a method






37. SomeClass* aVariable = [[SomeClass alloc] init]; is an example of what kind of instance?






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






39. super - is used...






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






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






42. NSValue - class...






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






44. A view is an...






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






46. UIImageView is used to...






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






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






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






50. You use _ to implement the view