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


2. In a class method you cannot access...






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






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






5. @property - is using methods...






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






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


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






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






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






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






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






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






14. NSDictionary...






15. UIView - designated initializer...






16. Designated initializer makes sure that every...






17. You use _ to implement the view






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






19. Hold data and know nothing about the user interface






20. Primitives and C Structures...






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






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






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






24. Three ways instances are created...






25. A _ handles touch events.






26. super - is used...






27. Also - because arrays only hold a pointer to an object...






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






29. NSSet...






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






31. A responder is responsible for...






32. Delegation is an object oriented approach to






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






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






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. Object Oriented based analogue to a function is called a...






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






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






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






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






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






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






43. NSValue - class...






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






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






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






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






48. If you aren't going to initialize an instance reference pointer at the moment you declare it by assigning a real value - it's a good idea to assign it _.






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






50. Why properties?