Advertisement
JoshuaNHardison

test1

Oct 1st, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. exam 1
  2. ~poll everywhere~
  3.  
  4. 100 points total
  5. multiple choice - 60 points
  6. Classes
  7. vocab
  8. data/attributes
  9. member functions
  10. constructor
  11. can be overloaded
  12. default constructor
  13. cannot be overloaded
  14. destructor
  15. syntax when calling
  16. object
  17. access specifiers
  18. private and public
  19. encapsulation
  20. scope resolution
  21. pointer operator
  22. class declaration
  23. what it looks like
  24. include guard
  25. it is a preprocessor directive
  26. inline member functions
  27. given code, what is expected output_iterator
  28. syntax of how to call a function of an object
  29. MAKEFILES/COMMAND LINE ARGUMENTS/TEMPLATES(CH16)
  30. makefile is used to compile & link your program
  31. STANDARD TEMPLATE LIBRARY / CONTAINER / ITERATOR
  32. data structures organize data
  33. iterator is like a pointer - accesses data elements in a container
  34. a container is a class that stores data & organizes it in some fasion
  35. array STL container class
  36. vector STL container class
  37. DATA STRUCTURES / LIST ADT / LINKED LIST / LIST STANDARD TEMPLATE LIBRARY (STL)
  38. singly linked vs doubly linked list
  39. how do you know when you are at the end of a list
  40. each item in a list is called a node
  41. a pointer is used to travel through list ADT
  42. common list ADT operations
  43. header file for list template class (STL)
  44. last node in a linked list points to NULL
  45. if head pointer points to NULL - empty list
  46. head pointer
  47. tail pointer
  48. 40 points
  49. write a class specification for a list template class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement