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






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






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


5. Name of the method to be executed






6. Classes describe two things...






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






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






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






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






11. id is a...






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






13. Keep view and model objects in sync - control the 'flow' of the application - and save the model objects out to the filesystem






14. super - is used...






15. Ready-made instances...






16. UIImageView is used to...






17. NSSet...






18. A view represents a _ area






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






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






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






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. Defining variables - three parts...






24. Delegation is an object oriented approach to






25. @property - is using methods...






26. A view is an...






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






28. Three ways instances are created...






29. When making a tableView always...






30. A view exists within a hierarchy. The window (an instance of UIWindow) is a view and the root of the hierarchy. It has _ (that appear on the window). Those views can also have _.






31. NSDate - class...






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






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






34. Designated initializer makes sure that every...






35. How do I implement my drawRect?






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






37. Also if you send the NSObject the _ message - you own that object.






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






39. Views have three properties related to their location and size: @property _ _;






40. Asking a class or object to execute a method






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






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






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






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






45. Primitives and C Structures...






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






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






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






49. A responder is responsible for...






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