Software Development Fundamentals — Question 17

You are creating an application that accepts input and displays a response to the user. You cannot create a graphical interface for this application.
Which type of application should you create?

Answer options

Correct answer: D

Explanation

The correct choice is D, Console-based, as it allows for user input and output in a non-graphical format. Windows Forms (A) and Web-based applications (C) both require graphical interfaces, while a Windows Service (B) runs in the background and does not interact with users directly.