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. Values to be supplied as the parameters to the method






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






3. Execution of the break statement...






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






5. NSDate - class...






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






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






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






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






10. Name of the method to be executed






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






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






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






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






15. What does autorelease mean?






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


17. Files Owner...






18. You use _ to implement the view






19. Whenever a UINavigationController is about to swap views - it sends out two messages






20. NSArray - important methods...






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






22. To load a Xib file manually - you use _






23. UITableViewController is a subclass of...






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






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






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






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






28. Center and frame are used to _ your view






29. Defining variables - three parts...






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






31. A view represents a _ area






32. if you implemented both the setter and getter - the @synthesize method...






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


34. Three ways instances are created...






35. class methods...






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






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






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






39. Classes describe two things...






40. NSArray - class...






41. Designated initializer makes sure that every...






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






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






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






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






46. Property List...






47. A responder is responsible for...






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






49. NSValue - class...






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