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. Typically the designated initializer has parameters for the most important and frequently used _ of an object






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. At the top of any implementation file...






4. Designated initializer makes sure that every...






5. [Instance Variables] The code it gets from its class and in a sense is shared with all other instances of that class - but the _ belong to it alone.






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






7. Asking a class or object to execute a method






8. UIImageView is used to...






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






10. C struct with a CGPoint origin and a CGSize size - in other words two c structs.






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






12. NSArray - class...






13. When making a tableView always...






14. Delegation is an object oriented approach to






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






16. NSNumber - class...






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


18. The notion that the data for an object is stored in it's instance variables and is accessed only by the objects methods. This maintains the integrity of the data.






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






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






21. Class methods typically either create






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






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






24. A view is a subclass of _






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






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






27. Primitives and C Structures...






28. Center and frame are used to _ your view






29. id is a...






30. Categories are an Objective C way to add _ to an existing class without subclassing






31. Name of the method to be executed






32. All objects are accessed using...






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


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






35. A responder is responsible for...






36. UITableViewController is a subclass of...






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






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






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






40. Instance Variables by default are called @protected meaning...






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






42. NSArray - important methods...






43. The integer prefix is...






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






45. Classes describe two things...






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






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






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


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






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