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






2. NSNumber - class...






3. Execution of the break statement...






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






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






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


7. @property - is using methods...






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






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


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






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






12. NSValue - class...






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






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






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


16. Primitives and C Structures...






17. Core foundation classes are prefixed with _ and suffixed with _






18. Center and frame are used to _ your view






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






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






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






22. Classes describe two things...






23. NSDictionary...






24. All objects are accessed using...






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






26. Delegation is an object oriented approach to






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


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






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






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






31. A UITableViewController can fill all three roles of...






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






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






34. When the message endEditing: is sent to a view - if it or any of its subviews or currently the _ - it will resign its first responder statues - and the keyboard will be dismissed.






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






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






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






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






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






40. Reference Counting...






41. UIViewController has several methods that get called at certain times...






42. How do I implement my drawRect?






43. What does autorelease mean?






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


45. C struct with a CGPoint origin and a CGSize size - in other words two c structs.






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






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






48. id is a...






49. Why properties?






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