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 collection object - an ordered list of objects that can be accesed by an index






2. Only exists within the statement block there defined - outside of the block is fine






3. NSArray - important methods...






4. To get the full path for a directory in the sandbox - you use the _ NSSearchPathForDirectoriesInDomains.






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






6. A responder is responsible for...






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






8. Center and frame are used to _ your view






9. Reducing details to focus on the core concepts






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






11. NSDictionary...






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






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






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






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






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






17. Defining variables - three parts...






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






19. @property - is using methods...






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






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






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


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






24. UIView - designated initializer...






25. NSDate - class...






26. The integer prefix is...






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






28. Primitives and C Structures...






29. NSString* s2 = [s uppercase String]; Is an example of what kind of instance?






30. NSValue - class...






31. A _ handles touch events.






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






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






34. [Instance Variables] The code it gets from its class and in a sense is shared with all other instances of that class - but the _ belong to it alone.






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






36. When making a tableView always...






37. super - is used...






38. NSString objects are usually sent _ rather than _...






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


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






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






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






43. UIImageView is used to...






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






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






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






47. A view is an...






48. You use _ to implement the view






49. NSArray - class...






50. Designated initializer makes sure that every...