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






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






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






4. When a view controller presents a modal view controller - the _ of the modal view controller is set to be the parent of the presenting controller






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






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

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


7. A view is an...






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






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






10. A view represents a _ area






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






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






13. You use _ to implement the view






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






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






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






17. Property List...






18. NSNumber - class...






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






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






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






22. Asking a class or object to execute a method






23. When making a tableView always...






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






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






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






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


28. In any application with UINavigationController - the navigation controller...






29. class methods...






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






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






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


33. Files Owner...






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






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






36. id is a...






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






38. When do you take ownership?...






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






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






41. Also - because arrays only hold a pointer to an object...






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






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






44. If you have extra work you want to do on the view...






45. To load a Xib file manually - you use _






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






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






48. super - is used...






49. Each class picks one _ as it's designated initializer....






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