Find and correct the error(s) in the following segments of code:

```
For (i = 100, i >= 1, ++i)
{
Console.WriteLine(i);
}
```

For should be for. Also, the commas in the for header should be semicolons.

Computer Science & Information Technology

You might also like to view...

If formatting is not a concern, you can save the document in ________ format

A) Adobe Portable Document B) Rich Text C) plain text D) HTML

Computer Science & Information Technology

The _______ method displays a dialog window when selecting a file that you want to open.

a. DisplayDialogControl b. DisplayDialog c. ShowDialog d. ShowControl

Computer Science & Information Technology