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. Typically the designated initializer has parameters for the most important and frequently used _ of an object






2. Archiving works by creating an instance of _ - which is essentially just a container for data - and placing objects and their data inside it.






3. How do I implement my drawRect?






4. A view is a subclass of _






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






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






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






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






9. Name of the method to be executed






10. NSValue - class...






11. Three ways instances are created...






12. Reference Counting...






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






14. Files Owner...






15. You use _ to implement the view






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






17. Classes describe two things...






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






19. A responder is responsible for...






20. Ready-made instances...






21. UIViewController has several methods that get called at certain times...






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






23. What does autorelease mean?






24. Center and frame are used to _ your view






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


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


27. Designated initializer makes sure that every...






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






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






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






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






32. Execution of the break statement...






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






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






35. NSDictionary...






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






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






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






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


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






41. Delegation is an object oriented approach to






42. What happens when the last owner calls release?

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


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






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






45. Values to be supplied as the parameters to the method






46. id is a...






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






48. A view is an...






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. Class methods do not operate on an _ or have any access to _ variables....