| 1: | What type of error prevents C# from compiling and running code? |
| A1: | A build error |
| 2: | What is the name of a runtime error: an error that usually occurs as a result of attempting to process inappropriate data? |
| A2: | An exception |
| 3: | What character is used to denote a single line comment? |
| A3: | The double slashes character (//) |
| 4: | To halt execution at a specific statement in code, you set a what? |
| A4: | Break point |
| 5: | Explain the yellow arrow and red circles that can appear in the gray area in the code editor. |
| A5: | The yellow arrow denotes the next statement to be processed . Red circles are used to mark break points. |
| 6: | What IDE window would you use to poll the contents of a variable in Break mode? |
| A6: | The Command window |
| 7: | True or False: You must always specify a catch section in a try structure. |
| A7: | False |
| Top |