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


2. NSValue - class...






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






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






5. UITableViewController is a subclass of...






6. Center and frame are used to _ your view






7. NSNumber - class...






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






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






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






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






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






13. A responder is responsible for...






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


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






16. A view is an...






17. Designated initializer makes sure that every...






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






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






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






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






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


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






24. Proceed through the loop - jump back to the top and check again






25. UIImageView is used to...






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






27. A command directed to an object is called an...






28. When making a tableView always...






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






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






31. Prefixing a character string with an @ symbol [specific - NSString class]...






32. Why properties?






33. Primitives and C Structures...






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






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


36. How do I implement my drawRect?






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






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






39. Execution of the break statement...






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






41. You use _ to implement the view






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






43. super - is used...






44. A _ handles touch events.






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






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






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






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


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






50. Name of the new class - it's superclass - the instance variables that each instance of this class has - and any methods this class implements