akosiraff

is an autocompletion feature, which gives the programmer qui

Mar 5th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. Download: http://solutionzip.com/downloads/is-an-autocompletion-feature-which-gives-the-programmer-quick-access/
  2.  
  3. 1. (TCOs 1, 6) _____ is an autocompletion feature, which gives the programmer quick access to language element definitions and allows for the quick insertion of those elements into the source code. (Points : 5)
  4. Bookmark
  5. Break point
  6. Intellisense
  7. Step through
  8. 2. (TCOs 1, 6) To cause the Visual Studio debugger to halt execution of your program at a particular statement, set _____ at that statement. (Points : 5)
  9. a breakpoint
  10. locals
  11. a debug
  12. a watch
  13. 3. (TCOs 1, 6) C# XXXXX include _____ and _____. (Points : 5)
  14. case, for
  15. catch, trying
  16. int, nullset
  17. try, dynamic
  18. 4. (TCOs 2, 3) If correct arithmetic operator precedence rules are applied, what will be the value of the following expression?
  19. 2 + 4 / 2 – 3
  20. (Points : 5)
  21. 0
  22. 1
  23. -6
  24. 6
  25. 5. (TCOs 2, 3) Your C# XXXXX needs to store a single alphanumeric character that the user will enter. When your program starts, the default setting for that character should be the letter A. You implement this functionality by writing _____. (Points : 5)
  26. char myVar = A;
  27. char myVar = ‘A’;
  28. char myVar(‘A’);
  29. char myVar(A);
  30. 6. (TCOs 2, 3) A computer uses ____ numerals to represent and manipulate data. (Points : 5)
  31. two
  32. eight
  33. 10
  34. 16
  35. 7. (TCO 4) The symbol && is an example of a C# XXXXX operator. (Points : 5)
  36. relational
  37. Boolean
  38. logical
  39. mathematical
  40. 8. (TCO 4) The following C# XXXXX _____ compile. It contains a _____ error.
  41. int x = 3 y = 2;
  42. if (x 1)
  43. {
  44. Console.Write(“{0}\t”, a);
  45. a–;
  46. }
  47. Console.Write(“{0}\t”, a);
  48. (Points : 5)
  49. An infinite loop
  50. An error
  51. 1 1
  52. 1
  53.  
  54. Download: http://solutionzip.com/downloads/is-an-autocompletion-feature-which-gives-the-programmer-quick-access/
Advertisement
Add Comment
Please, Sign In to add comment