Which line in the following program will cause a compiler error?
```
1 #include
2 using namespace std;
3
4 int main()
5 {
6 const int MY_VAL = 77;
7 MY_VAL = 99;
8 cout << MY_VAL << endl;
9 return 0;
10 }
```
a. line 6
b. line 7
c. line 8
d. line 9
e. there will be no compiler error
b. line 7
You might also like to view...
An AMR slot is generally used with which of the following interface card types?
A. Video game emulator card B. Video capture card C. Modem D. Mini-PCI card
Given the following pseudocode, how many conditions will be tested if TRANSCODE is a Withdrawal?
``` Start Read TRANSCODE CASENTRY TRANSCODE CASE “Receipt” Process B000 CASE “Order” Process B010 CASE “Withdrawal” Process B020 CASE “Adjustment” Process B030 ENDCASE Write GRADE Stop ``` a) 0 b) 1 c) 2 d) 3