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. Archiving works by creating an instance of _ - which is essentially just a container for data - and placing objects and their data inside it.






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






3. Designated initializer makes sure that every...






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






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






6. Reducing details to focus on the core concepts






7. Name of the method to be executed






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






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






10. NSNumber - class...






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






12. A responder is responsible for...






13. NSDictionary...






14. UIView - designated initializer...






15. What does autorelease mean?






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


17. UIImageView is used to...






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






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






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






21. NSSet...






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






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






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






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






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






27. Execution of the break statement...






28. The object to which a message is sent - the receiver can be referred to as self from inside the method that is invoked






29. How do I implement my drawRect?






30. The integer prefix is...






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


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






33. You use _ to implement the view






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. Ready-made instances...






36. Three ways instances are created...






37. Primitives and C Structures...






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






39. At the top of any implementation file...






40. A function in the objective c library that simply displays or logs it's argument






41. Each object does its own job - and presents to the rest of the world - to other objects - and indeed in a sense to the programmer - an opaque wall whose only entrances are the methods to which it promises to respond and the actions it promises to per






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






43. A view represents a _ area






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






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






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






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






48. NSDate - class...






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






50. Asking a class or object to execute a method