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. Center and frame are used to _ your view






2. UIView - designated initializer...






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


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






5. Reference Counting...






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






7. Execution of the break statement...






8. UIImageView is used to...






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


10. What does autorelease mean?






11. Inside a method - _ is an implicit local variable. Typically - _ is used so that an object can send a message to itself....






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






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






14. Designated initializer makes sure that every...






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






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






17. The integer prefix is...






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






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






20. Ready-made instances...






21. Primitives and C Structures...






22. A delegate is a pointer to an object with a set of methods the delegate-holder knows how to call. In other words - it's _ from a later created object






23. Property List...






24. Asking a class or object to execute a method






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






26. When do you take ownership?...






27. Object Oriented based analogue to a function is called a...






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






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






30. If a class declares a _ that is different from its superclass - you must override the superclass' _ to call the new _...






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






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






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






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






35. id is a...






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






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






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






39. initWithFrame: the designated initializer for UIView gives the view






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






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






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






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






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






45. Delegation is an object oriented approach to






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






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






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






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


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