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


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






3. When an object is removed from an NSMutableArray - that object is sent the message release;...






4. Why properties?






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






6. Defining variables - three parts...






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






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






9. If you aren't going to initialize an instance reference pointer at the moment you declare it by assigning a real value - it's a good idea to assign it _.






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






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






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






13. In Objective C - the name of a setter method is set plus the name of the instance variable it is changing - for example PossessionName would be...






14. NSSet...






15. Files Owner...






16. The integer prefix is...






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






18. Reference Counting...






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






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






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






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






23. What does autorelease mean?






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






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






26. Objective C only allows for single inheritance - so in regards to class you only ever see the following pattern






27. All objects are accessed using...






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






29. Three ways instances are created...






30. When you send a message to _ - you are sending a message to _ - but demanding that the search for the method begin at the superclass....






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






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






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






34. A view represents a _ area






35. A _ handles touch events.






36. @property - is using methods...






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






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






39. A view is a subclass of _






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






41. Number one use of protocols in iOS...






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






43. UIImageView is used to...






44. Hold data and know nothing about the user interface






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






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


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


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






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






50. A class inherits all _ from its superclass and can add as many as it wants for its own purposes....