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. Three ways instances are created...






2. For view controllers that are closely related - like a table view controller and its detail view controller - you can simply give them _ that point to each other.






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






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






5. NSDate - class...






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






7. Classes describe two things...






8. Files Owner...






9. class methods...






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






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






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






13. super - is used...






14. Designated initializer makes sure that every...






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






16. Hold data and know nothing about the user interface






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


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






19. When making a tableView always...






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






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






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






23. A view represents a _ area






24. @property - is using methods...






25. A callback is a function that is supplied in advance of an event - and...






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






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






28. UITableViewController is a subclass of...






29. NSValue - class...






30. Property List...






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






32. The notion that the data for an object is stored in it's instance variables and is accessed only by the objects methods. This maintains the integrity of the data.






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






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






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






36. Why properties?






37. Reducing details to focus on the core concepts






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






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






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






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


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






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






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






45. initWithFrame: the designated initializer for UIView gives the view






46. Execution of the break statement...






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






48. Primitives and C Structures...






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






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