Software Development Fundamentals — Question 50
How does a console-based application differ from a Windows Forms application?
Answer options
- A. Console-based applications require the XNA Framework to run.
- B. Windows Forms applications do not provide a method for user input.
- C. Windows Forms applications can access network resources.
- D. Console-based applications do not display a graphical interface.
Correct answer: D
Explanation
The correct answer is D because console-based applications are text-driven and do not present a graphical interface, while Windows Forms applications are designed to provide a graphical user interface for interaction. Option A is incorrect as console applications do not require the XNA Framework, B is wrong since Windows Forms applications do allow for user input, and C is inaccurate because both types of applications can access network resources, but it is not a distinguishing feature.