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. You use _ to implement the view






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






4. A pointer to the object being asked to execute a method






5. Execution of the break statement...






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






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






8. Designated initializer makes sure that every...






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






10. UIImageView is used to...






11. A view is a subclass of _






12. When do you take ownership?...






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






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


15. A _ handles touch events.






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






17. If a class declares a _ that is different from its superclass - you must override the superclass' _ to call the new _...






18. Name of the method to be executed






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






20. In the last line of an init method...






21. Defining variables - three parts...






22. Three ways instances are created...






23. Delegation is an object oriented approach to






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






25. If the view has no subviews - create it programmatically; if it has subviews






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






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






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






29. @property - is using methods...






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






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






32. Just a floating point number - but we always use it for graphics.






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






34. Files Owner...






35. Reference Counting...






36. Why properties?






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






38. Hold data and know nothing about the user interface






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






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






41. NSArray - important methods...






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






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






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






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






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


47. Primitives and C Structures...






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






49. How do I implement my drawRect?






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