Want to pass your Software Development Fundamentals 98-361 exam in the very first attempt? Try Pass2lead! It is equally effective for both starters and IT professionals.
VCE
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?
A. Windows Forms
B. Windows Service
C. Web-based
D. Console-based
You need to create a property in a class. Consumers of the class must be able to read the values of the property. Consumers of the class must be prevented from writing values to the property.
Which property procedure should you include?
A. Return
B. Get
C. Set
D. Let
The Dog class and the Cat class inherit from the Animal class. The Animal class includes a breathe() method and a speak() method. If the speak() method is called from an object of type Dog, the result is a bark. If the speak() method is called from an object of type Cat, the result is a meow.
Which term is used to describe this object-oriented concept?
A. multiple inheritance
B. encapsulation
C. polymorphism
D. data hiding