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






2. NSArray - class...






3. A responder is responsible for...






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






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






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


7. The integer prefix is...






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






9. Primitives and C Structures...






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






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






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






13. class methods...






14. Classes describe two things...






15. UIImageView is used to...






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






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






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






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






20. Any individual object belonging to any class...






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






22. Order of the declarations for methods. _ come first - followed by _ - followed by any other methods...






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






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






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


26. Hold data and know nothing about the user interface






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






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






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






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






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






32. Class methods typically either create






33. Reference Counting...






34. Values to be supplied as the parameters to the method






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






36. id is a...






37. Defining variables - three parts...






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






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






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






41. Delegation is an object oriented approach to






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






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






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






45. A view is a subclass of _






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






47. A view represents a _ area






48. Name of the method to be executed






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






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