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. Object Oriented based analogue to a function is called a...






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






3. NSDate - class...






4. A view is a subclass of _






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






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






7. UIView - designated initializer...






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






9. Any other initializer a class has calls the _ designated initializer....


10. A _ handles touch events.






11. Classes describe two things...






12. id is a...






13. How do I implement my drawRect?






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






15. Inside a method - _ is an implicit local variable. Typically - _ is used so that an object can send a message to itself....






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






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






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






19. NSValue - class...






20. A responder is responsible for...






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






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






23. UIImageView is used to...






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






25. A UITableView usually needs three different pieces...






26. Three ways instances are created...






27. Ready-made instances...






28. Property List...






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






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. Instance Variables by default are called @protected meaning...






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






33. @property - is using methods...






34. In general - class methods tend to be factory methods - that is...






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






36. NSDictionary...






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






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






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






40. A view represents a _ area






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






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






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






44. Never access a view controller's view in that...


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






46. A collection object - an ordered list of objects that can be accesed by an index






47. super - is used...






48. class methods...






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






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