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


2. Reference Counting...






3. Designated initializer makes sure that every...






4. NSSet...






5. When making a tableView always...






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






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






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






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






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






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






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






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






14. Defining variables - three parts...






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






16. NSDictionary...






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






18. Hold data and know nothing about the user interface






19. A view is an...






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






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






22. Class methods typically either create






23. id is a...






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






25. All objects are accessed using...






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






27. Classes describe two things...






28. NSArray - important methods...






29. In general - in Objective-C - a reference to an instance is a _ - and the name of the data type of what's at the far end of that pointer is the name of the instances's _.






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






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






32. You use _ to implement the view






33. A view is a subclass of _






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






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


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






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






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






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






40. @property - is using methods...






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


42. NSValue - class...






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






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






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






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






47. Reducing details to focus on the core concepts






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


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






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