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






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






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


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






5. NSDate - class...






6. Class methods typically either create






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






8. A _ handles touch events.






9. When do you take ownership?...






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






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






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


13. We can use dot notation to reference...

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


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






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






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






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






18. A set of variables and associated methods. An object can be sent messages to cause one of its methods to be executed.






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


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


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






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






23. Asking a class or object to execute a method






24. In object oriented languages - we call methods that get and set instance variables accessors - individually we call them...

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


25. Reference Counting...






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






27. super - is used...






28. All objects are accessed using...






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






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. Core foundation classes are prefixed with _ and suffixed with _






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






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






34. Designated initializer makes sure that every...






35. A block of statements identified by a name that can accept one or more arguments passed to it by value and can optionally return a value






36. Name of the method to be executed






37. UITableViewController is a subclass of...






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






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






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






41. @property - is using methods...






42. Hold data and know nothing about the user interface






43. Reducing details to focus on the core concepts






44. Execution of the break statement...






45. A responder is responsible for...






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






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






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






49. NSString* s2 = [s uppercase String]; Is an example of what kind of instance?






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