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. Keep view and model objects in sync - control the 'flow' of the application - and save the model objects out to the filesystem






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


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






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






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






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






7. A view represents a _ area






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






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






10. SomeClass* aVariable = [[SomeClass alloc] init]; is an example of what kind of instance?






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






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






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






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


15. When do you take ownership?...






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






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






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






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






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






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






22. Ready-made instances...






23. initWithFrame: the designated initializer for UIView gives the view






24. id is a...






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






26. UIImageView is used to...






27. At the top of any implementation file...






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






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


30. @property - is using methods...






31. What does autorelease mean?






32. Three ways instances are created...






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






34. When making a tableView always...






35. NSDictionary...






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


37. Reference Counting...






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






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






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






41. NSArray - important methods...






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






43. Execution of the break statement...






44. Designated initializer makes sure that every...






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






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






47. Each object does its own job - and presents to the rest of the world - to other objects - and indeed in a sense to the programmer - an opaque wall whose only entrances are the methods to which it promises to respond and the actions it promises to per






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






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






50. All objects are accessed using...