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. Objective C only allows for single inheritance - so in regards to class you only ever see the following pattern






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






3. Designated initializer makes sure that every...






4. class methods...






5. Property List...






6. UIView - designated initializer...






7. The class is responsible for what instance variables the instance has - but not the _ of those variables.






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






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






10. NSDate - class...






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






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






13. In Objective C arrays can hold only...






14. In Cocoa Touch - the table view asks another object _ what it should display...






15. A view is an...






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






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






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






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






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






22. What does autorelease mean?






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






24. You use _ to implement the view






25. Each individual instance is a bundle of data that it maintains. Typically that data is private - which means that it's encapsulated as well; no other object knows what that data is or in what form it is kept. The only way to discover from outside wha






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






27. Delegation is an object oriented approach to






28. NSDictionary...






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






30. Use of class methods - there are three...






31. Class methods typically either create






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






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






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






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






36. Classes describe two things...






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






38. A _ handles touch events.






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






40. UITableViewController is a subclass of...






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






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






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






44. Three ways instances are created...






45. A responder is responsible for...






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






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






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






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


50. NSSet...