Identify and correct the error(s) in each of the following:
```
if (age >= 65); {
cout << "Age is greater than or equal to 65" << endl;
}
else {
cout << "Age is less than 65 << endl";
}
```
The semicolon at the end of the if condition should be removed. The closing double quote after the second endl should be placed after 65.
Computer Science & Information Technology
You might also like to view...
A(n) ________ fill is a gradual progression of colors and shades added to fill a shape
A) gradient B) bevel C) saturation D) accent
Computer Science & Information Technology
_____ is a method of dealing with a situation in which two or more users or applications need to access the same record at the same time.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology