Microsoft 98-361 Exam Practice Questions (P. 1)
- Full Access (163 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #1
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?
The application performs tasks that require permissions that the logged-in user does not have.
Which type of application allows this behavior?
- AWindows Service application
- BWindows Forms application
- CDOS batch file
- DTerminate-and-stay-resident (TSR) program
Correct Answer:
A
A
send
light_mode
delete
Question #2
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?
Which term is used to describe this programming model?
send
light_mode
delete
Question #3
How does a console-based application differ from a Windows Forms application?
- AConsole-based applications require the XNA Framework to run.
- BWindows Forms applications do not provide a method for user input.
- CWindows Forms applications can access network resources.
- DConsole-based applications do not display a graphical interface.Most Voted
Correct Answer:
D
D
send
light_mode
delete
Question #4
Which type of Windows application presents a parent window that contains child windows?
- AApplication programming interface (API)
- BSingle-document interface (SDI)
- CMultiple-document interface (MDI)
- DCommand-line interface (CLI)
Correct Answer:
C
A multiple document interface (MDI) is a graphical user interface in which multiple windows reside under a single parent window. Such systems often allow child windows to embed other windows inside them as well, creating complex nested hierarchies. This contrasts with single document interfaces (SDI) where all windows are independent of each other.
C
A multiple document interface (MDI) is a graphical user interface in which multiple windows reside under a single parent window. Such systems often allow child windows to embed other windows inside them as well, creating complex nested hierarchies. This contrasts with single document interfaces (SDI) where all windows are independent of each other.
send
light_mode
delete
Question #5
The purpose of a constructor in a class is to:
- AInitialize an object of that class.
- BRelease the resources that the class holds.
- CCreate a value type.
- DInherit from the base class.
Correct Answer:
A
Each value type has an implicit default constructor that initializes the default value of that type.
A
Each value type has an implicit default constructor that initializes the default value of that type.
send
light_mode
delete
All Pages