Software Development Fundamentals

Here you have the best Microsoft 98-361 practice exam questions

  • You have 60 total questions to study from
  • Each page has 5 questions, making a total of 12 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on November 18, 2024
Question 1 of 60

You are creating an application for computers that run Windows XP or later. This application must run after the computer starts. The user must not be aware that the application is running.

The application performs tasks that require permissions that the logged-in user does not have.

Which type of application allows this behavior?

    Correct Answer: A

    A Windows Service application runs in the background and provides the capabilities required in the given scenario. It starts automatically when the computer boots, and it can operate without user interaction, which means the user will not be aware that it is running. Moreover, it can be configured to run under a specific user account that has the necessary permissions to perform tasks that the logged-in user does not have.

Question 2 of 60

An application presents the user with a graphical interface. The interface includes buttons that the user clicks to perform tasks. Each time the user clicks a button, a method is called that corresponds to that button.

Which term is used to describe this programming model?

    Correct Answer: D

    The term used to describe a programming model where the user interacts with a graphical interface, typically by clicking buttons that trigger methods, is 'Event driven.' In an event-driven programming model, the state and behavior of the application are primarily controlled by events such as user interactions, system messages, or other inputs.

Question 3 of 60

How does a console-based application differ from a Windows Forms application?

    Correct Answer: D

    Console-based applications do not display a graphical interface, whereas Windows Forms applications provide a graphical user interface. Console applications primarily rely on text input and output, operating within a console window. In contrast, Windows Forms applications have forms and controls that allow for more complex and visually rich user interactions.

Question 4 of 60

Which type of Windows application presents a parent window that contains child windows?

    Correct Answer: C

    A multiple-document interface (MDI) is a type of Windows application where a single parent window contains multiple child windows. This setup allows users to manage multiple documents within a single application window, making it easier to switch between and organize different tasks or documents. This contrasts with a single-document interface (SDI), where each window operates independently.

Question 5 of 60

The purpose of a constructor in a class is to:

    Correct Answer: A

    The purpose of a constructor in a class is to initialize an object of that class. A constructor is a special method that is called when a new instance of the class is created, and its primary function is to set up the initial state of the object by assigning values to its fields and performing any other required setup tasks.