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 _ handles touch events.






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






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. If you have extra work you want to do on the view...






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






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






8. Property List...






9. Each _ has a 'designated' initializer method....






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






11. A view is an...






12. The integer prefix is...






13. Name of the method to be executed






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






15. super - is used...






16. NSNumber - class...






17. Asking a class or object to execute a method






18. UIView - designated initializer...






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






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






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






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






23. Hold data and know nothing about the user interface






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






25. Instance Variables by default are called @protected meaning...






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






27. A view is a subclass of _






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






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






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






31. All objects are accessed using...






32. In object oriented languages - we call methods that get and set instance variables

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


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






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






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


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






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


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






39. When you send a message to _ - you are sending a message to _ - but demanding that the search for the method begin at the superclass....






40. NSString *s = @'Hello - World'; is an example of...






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






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






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






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






45. A view represents a _ area






46. You use _ to implement the view






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






48. NSDate - class...






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






50. Why properties?