Microsoft 98-361 Microsoft MTA Software Development Fundamentals Online Training
Microsoft 98-361 Online Training
The questions for 98-361 were last updated at Dec 19,2024.
- Exam Code: 98-361
- Exam Name: Microsoft MTA Software Development Fundamentals
- Certification Provider: Microsoft
- Latest update: Dec 19,2024
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?
- A . Windows Service application
- B . Windows Forms application
- C . DOS batch file
- D . Terminate-and-stay-resident (TSR) program
- E . Windows Store app
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?
- A . Functional
- B . Service oriented
- C . Structured
- D . Event driven
How does a console-based application differ from a Windows Forms application?
- 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.
Which type of Windows application presents a parent window that contains child windows?
- A . Application programming interface (API)
- B . Single-document interface (SDI)
- C . Multiple-document interface (MDI)
- D . Command-line interface (CLI)
The purpose of a constructor in a class is to:
- A . Initialize an object of that class.
- B . Release the resources that the class holds.
- C . Create a value type.
- D . Inherit from the base class.
A class named Manager is derived from a parent class named Employee. The Manager class includes characteristics that are unique to managers.
Which term is used to describe this object-oriented concept?
- A . Encapsulation
- B . Data modeling
- C . Inheritance
- D . Data hiding
Which term is used to describe a class that inherits functionality from an existing class?
- A . Base class
- B . Inherited class
- C . Derived class
- D . Superclass
Two classes named Circle and Square inherit from the Shape class. Circle and Square both inherit Area from the Shape class, but each computes Area differently.
Which term is used to describe this object-oriented concept?
- A . polymorphism
- B . encapsulation
- C . superclassing
- D . overloading
You create an object of type ANumber. The class is defined as follows.
What is the value of _number after the code is executed?
- A . Null
- B . 0
- C . 3
- D . 7
You need to allow a consumer of a class to modify a private data member.
What should you do?
- A . Assign a value directly to the data member.
- B . Provide a private function that assigns a value to the data member.
- C . Provide a public function that assigns a value to the data member.
- D . Create global variables in the class.