Answer the following statements true (T) or false (F)
1. The only way to run a program in Visual Studio is by clicking the Start Debugging button on the toolbar.
2. C# source code files always end with the .cs extension.
3. The Program.cs file contains auto-generated code that serves as an outline to which you should add your own code as you develop the application.
4. It is important that you do not modify the contents of the Form 1. cs file because doing so will prevent the application from executing.
1. FALSE
2. TRUE
3. FALSE
4. FALSE
You might also like to view...
How does the compiler handle the statement b=a?
A. It doesn’t. That’s the linker’s job. B. The assignment operator assigns the value of a into b. C. The assignment operator assigns the value of b into a. D. That is an invalid C++ statement.
Logical security involves the information that is found on physical devices.
Answer the following statement true (T) or false (F)