Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Download: http://solutionzip.com/downloads/is-an-autocompletion-feature-which-gives-the-programmer-quick-access/
- 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)
- Bookmark
- Break point
- Intellisense
- Step through
- 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)
- a breakpoint
- locals
- a debug
- a watch
- 3. (TCOs 1, 6) C# XXXXX include _____ and _____. (Points : 5)
- case, for
- catch, trying
- int, nullset
- try, dynamic
- 4. (TCOs 2, 3) If correct arithmetic operator precedence rules are applied, what will be the value of the following expression?
- 2 + 4 / 2 – 3
- (Points : 5)
- 0
- 1
- -6
- 6
- 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)
- char myVar = A;
- char myVar = ‘A’;
- char myVar(‘A’);
- char myVar(A);
- 6. (TCOs 2, 3) A computer uses ____ numerals to represent and manipulate data. (Points : 5)
- two
- eight
- 10
- 16
- 7. (TCO 4) The symbol && is an example of a C# XXXXX operator. (Points : 5)
- relational
- Boolean
- logical
- mathematical
- 8. (TCO 4) The following C# XXXXX _____ compile. It contains a _____ error.
- int x = 3 y = 2;
- if (x 1)
- {
- Console.Write(“{0}\t”, a);
- a–;
- }
- Console.Write(“{0}\t”, a);
- (Points : 5)
- An infinite loop
- An error
- 1 1
- 1
- Download: http://solutionzip.com/downloads/is-an-autocompletion-feature-which-gives-the-programmer-quick-access/
Advertisement
Add Comment
Please, Sign In to add comment