Guest User

Untitled

a guest
Jun 18th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1.  
  2.  
  3.  
  4. 1.
  5. Use the _______ object to display text on the screen.
  6. A) screen
  7. B) cout
  8. C) output
  9. D) iostream
  10. 2.
  11. To compile an applicaiton in Visual Studio.NET, select _____________.
  12. A) File > Compile Solution
  13. B) Build > Compile Solution
  14. C) Build > Build Solution
  15. D) Compile > Build Solution
  16. 3.
  17. Must begin the body of every function
  18. A) a newline character
  19. B) The int keyword
  20. C) A return statement
  21. D) A left brace {
  22. 4.
  23. Syntax errors in a C++ application _________.
  24. A) can cause subtle errors when the application runs
  25. B) prevent the application from compiling correctly
  26. C) are ignored by the compiler
  27. D) are detected after the applicaion has been compiled
  28. 5.
  29. Files with an .obj extension contain _________.
  30. A) source code
  31. B) an executable image
  32. C) machine code
  33. D) preprocessor information
  34. 6.
  35. Operator << is the ____________ operator.
  36. A) stream insertion
  37. B) stream extraction
  38. C) display
  39. D) cout
  40. 7.
  41. The _________ escape sequence sounds the system bell.
  42. A) \b
  43. B) \a
  44. C) \sb
  45. D) none of the above
  46. 8.
  47. To run an application using Visual Studio.NET, select __________.
  48. A) Run > Start without debugging
  49. B) Build > Start
  50. C) Debug > Start without debugging
  51. D) Run > Start
  52. 9.
  53. A _____________ is an example of a whitespace character.
  54. A) tab
  55. B) space
  56. C) newline
  57. D) all of the above
  58. 10.
  59. The __________ escape sequence places the cursor at the beginning of the current line.
  60. A) \n
  61. B) \r
  62. C) \t
  63. D) \b
Add Comment
Please, Sign In to add comment