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. If you have extra work you want to do on the view...






2. A view is a subclass of _






3. All objects are accessed using...






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. NSArray - important methods...






6. We can use dot notation to reference...

Warning: Invalid argument supplied for foreach() in /var/www/html/basicversity.com/show_quiz.php on line 183


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






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






9. Designated initializer makes sure that every...






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






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






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






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






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






15. Primitives and C Structures...






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






17. Files Owner...






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






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






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






21. Why properties?






22. NSDate - class...






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






24. A message is always contained in square brackets - and has three parts






25. id is a...






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






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






28. When an object is added to a NSMutableArray - that object is sent the message to retain;...






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






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






31. Instance Variables by default are called @protected meaning...






32. Defining variables - three parts...






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






34. Reference Counting...






35. In object oriented languages - we call methods that get and set instance variables

Warning: Invalid argument supplied for foreach() in /var/www/html/basicversity.com/show_quiz.php on line 183


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






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






38. UIImageView is used to...






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






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






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






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






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






44. UITableViewController is a subclass of...






45. NSDictionary...






46. Delegation is an object oriented approach to






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






48. Classes describe two things...






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






50. A view represents a _ area