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 view is a subclass of _






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






3. Delegation is an object oriented approach to






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






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






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






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


8. All objects are accessed using...






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






10. Execution of the break statement...






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






12. Property List...






13. class methods...






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






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






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






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






18. NSDate - class...






19. @property - is using methods...






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






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






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






23. Primitives and C Structures...






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






25. To load a Xib file manually - you use _






26. UIView - designated initializer...






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






28. You use _ to implement the view






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






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






31. What does autorelease mean?






32. UITableViewController is a subclass of...






33. Name of the method to be executed






34. Origin of a view's coordinate system is _ left






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






36. Each individual instance is a bundle of data that it maintains. Typically that data is private - which means that it's encapsulated as well; no other object knows what that data is or in what form it is kept. The only way to discover from outside wha






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






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


39. NSDictionary...






40. Ready-made instances...






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






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






43. super - is used...






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






45. NSArray - important methods...






46. Three ways instances are created...






47. Name of the new class - it's superclass - the instance variables that each instance of this class has - and any methods this class implements






48. Number one use of protocols in iOS...






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