Top Tips Of Avant-garde 98-361 Exam Question
We provide real 98-361 exam questions and answers braindumps in two formats. Download PDF & Practice Tests. Pass Microsoft 98-361 Exam quickly & easily. The 98-361 PDF type is available for reading and printing. You can print more and practice many times. With the help of our Microsoft 98-361 dumps pdf and vce product and material, you can easily pass the 98-361 exam.
Online Microsoft 98-361 free dumps demo Below:
NEW QUESTION 1
This question requires that you evaluate the underlined text to determine if it is correct. Converting an object to a more general type is called upcasting.
Select the correct answer if the underlined text does not make the statement correct. Select "No change is needed'' if the underlined text makes the statement correct.
- A. No change is needed
- B. downcasting
- C. interfacing
- D. flexing
Answer: A
Explanation:
Casting up a hierarchy means casting from a derived object reference to a base object reference.
NEW QUESTION 2
Where must Internet Information Services (IIS) be installed in order to run a deployed ASP. NET application?
- A. on the computer that you plan to deploy from
- B. on the computer that hosts the application
- C. on the Application Layer Gateway Service
- D. on the client computers
Answer: B
Explanation:
IIS is run on the web server. The web server is hosting the application.
NEW QUESTION 3
Which language allows you to dynamically create content on the client side?
- A. Cascading Style Sheets (CSS)
- B. JavaScript (JS)
- C. Extensible Markup Language (XML)
- D. Hypertext Markup Language (HTML)
Answer: B
Explanation:
JavaScript (JS) is a dynamic computer programming language. It is most commonly used as part of web browsers, whose implementations allow client-side scripts to interact with the user, control the browser, communicate asynchronously, and alter the document content that is displayed.
NEW QUESTION 4
You have a class named Truck that inherits from a base class named Vehicle. The Vehicle class includes a protected method named brake ().
How should you call the Truck class implementation of the brake () method?
- A. Vehicl
- B. brake ();
- C. Thi
- D. brake ();
- E. MyBas
- F. brake();
- G. Truc
- H. brake ();
Answer: C
Explanation:
The MyBase keyword behaves like an object variable referring to the base class of the current instance of a class.MyBase is commonly used to access base class
members that are overridden or shadowed in a derived class.
NEW QUESTION 5
Which three phrases are advantages of connection pooling? (Choose three.)
- A. reduces load on the server
- B. improved performance
- C. reduces time to create a connection
- D. requires no configuration
- E. improved scalability
Answer: BCE
Explanation:
B: In connection pooling, after a connection is created, it is placed in the pool and it is used over again so that a new connection does not have to be established.
E: Connection pooling often improves application performance, concurrency and scalability.
C: Connection pooling also cuts down on the amount of time a user must wait to establish a connection to the database.
NEW QUESTION 6
HOTSPOT
You are creating a Windows Store application that uses the following gesture:
Use the drop-down menus to select the answer choice that completes each statement. Each correct selection is worth one point.

- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 7
HOTSPOT
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 8
HOTSPOT
You are reviewing the following code that saves uploaded images.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 9
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. inheritance
- B. data modeling
- C. data hiding
- D. encapsulation
Answer: A
Explanation:
Classes (but not structs) support the concept of inheritance. A class that derives from another class (the base class) automatically contains all the public, protected, and internal members of the base class except its constructors and destructors.
Incorrect:
not D: Encapsulation is sometimes referred to as the first pillar or principle of object- oriented programming. According to the principle of encapsulation, a class or struct can specify how accessible each of its members is to code outside of the class or struct. Methods and variables that are not intended to be used from outside of the class or assembly can be hidden to limit the potential for coding errors or malicious exploits.
NEW QUESTION 10
This question requires that you evaluate the underlined text to determine if it is correct.
Unit testing is the final set of tests that must be completed before a feature or product can be considered finished.
Select the correct answer if the underlined text does not make the statement correct. Select "No change is needed'' if the underlined text makes the statement correct.
- A. No change is needed
- B. User acceptance
- C. System
- D. Integration
Answer: B
Explanation:
User acceptance testing (UAT) is the last phase of the software testing process. During UAT, actual software users test the software to make sure it can handle required tasks in real-world scenarios, according to specifications.
UAT is one of the final and critical software project procedures that must occur before newly developed software is rolled out to the market.
UAT is also known as beta testing, application testing or end user testing.
NEW QUESTION 11
You are creating an application that presents users with a graphical interface. Users will run this application from remote computers. Some of the remote computers do not have the
. NET Framework installed. Users do not have permissions to install software. Which type of application should you choose?
- A. Console-based
- B. AS
- C. NET
- D. Windows Service
- E. Windows Forms
Answer: B
NEW QUESTION 12
You are writing a Web application that processes room reservation requests. You need to verify that the room that a guest has selected is not already reserved by another guest.
Which type of programming should you use to determine whether the room is still available when the request is made?
- A. functional
- B. in-browser
- C. dynamic
- D. server-side
Answer: :D
NEW QUESTION 13
HOTSPOT
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 14
This question requires that you evaluate the underlined text to determine if it is correct. Converting an object to a more general type is called upcasting.
Select the correct answer if the underlined text does not make the statement correct. Select "No change is needed'' if the underlined text makes the statement correct.
- A. No change is needed
- B. downcasting
- C. interfacing
- D. flexing
Answer: :A
Explanation:
Casting up a hierarchy means casting from a derived object reference to a base object reference.
NEW QUESTION 15
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. Set
- B. Get
- C. Let
- D. Return
Answer: B
NEW QUESTION 16
This question requires that you evaluate the underlined text to determine if it is correct.
When a base class declares a method as virtual, the method is hidden from implementation bv a derived class.
Select the correct answer if the underlined text does not make the statement correct. Select "No change is needed" if the underlined text makes the statement correct.
- A. No change is needed
- B. can be overridden with its own implementation by a derived class
- C. must be overridden in any non-abstract class that directly inherits from that class
- D. cannot be overridden with its own implementation by a derived class
Answer: B
NEW QUESTION 17
A data warehouse database is designed to:
- A. Require validation of incoming data during real-time business transactions.
- B. Enable business decisions by collecting, consolidating, and organizing data.
- C. Support real-time business operations.
- D. Support a large number of concurrent users.
Answer: B
NEW QUESTION 18
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. polymorphism
- C. data hiding
- D. encapsulation
Answer: A
Explanation:
Polymorphism is often referred to as the third pillar of object-oriented programming, after encapsulation and inheritance. Polymorphism is a Greek word that means "many-shaped" and it has two distinct aspects:
* At run time, objects of a derived class may be treated as objects of a base class in places
* such as method parameters and collections or arrays. When this occurs, the object's declared type is no longer identical to its run-time type.
* Base classes may define and implement virtual methods, and derived classes can override them, which means they provide their own definition and implementation. At run- time, when client code calls the method, the CLR looks up the run-time type of the object, and invokes that override of the virtual method. Thus in your source code you can call a method on a base class, and cause a derived class's version of the method to be executed.
NEW QUESTION 19
You run the following code:
What is the value of result when the code has completed?
- A. 10
- B. 20
- C. 30
Answer: B
Explanation:
The conditional-OR operator (||) performs a logical-OR of its bool operands. If the first operand evaluates to true, the second operand isn't evaluated. If the first operand
evaluates to false, the second operator determines whether the OR expression as a whole evaluates to true or false.
NEW QUESTION 20
You are creating an ASP. NET Web application.
Which line of code should you use to require a control to process on the computer that hosts the application?
- A. defaultRedirect="ServerPag
- B. htm"
- C. redirect="HostPag
- D. htm"
- E. AutoEvencWireup="true"
- F. runat="server"
Answer: D
NEW QUESTION 21
You are creating an ASP. NET Web application.
Which line of code should you use to require a control to process on the computer that hosts the application?
- A. runat= "server"
- B. redirect*="HostPag
- C. htm"
- D. AutoEventWireup="true"
- E. defaultRedirect="ServerPag
- F. htm"
Answer: A
NEW QUESTION 22
Which type of function can a derived class override?
- A. A Protected Overridable member function
- B. A Shared function
- C. A Private Overridable function
- D. A non-overridable public member function
Answer: A
Explanation:
The Overridable modifier allows a property or method in a class to be overridden in a derived class.
You cannot specify Overridable oNr otOverridable for aPrivate method.
NEW QUESTION 23
This question requires that you evaluate the underlined text to determine if it is correct. A data dictionary that describes the structure of a database is called metadata.
Select the correct answer if the underlined text does not make the statement correct. Select "No change is needed'' if the underlined text makes the statement correct.
- A. No change is needed
- B. normalization
- C. a database management system (DBMS)
- D. metacontent
Answer: A
NEW QUESTION 24
Your database administrators will not allow you to write SQL code in your application. How should you retrieve data in your application?
- A. Reference an index in the database.
- B. Call a stored procedure.
- C. Query a database view.
- D. Script a SELECT statement to a file.
Answer: B
Explanation:
The SQL will only be inside the stored procedure.
NEW QUESTION 25
......
P.S. Thedumpscentre.com now are offering 100% pass ensure 98-361 dumps! All 98-361 exam questions have been updated with correct answers: https://www.thedumpscentre.com/98-361-dumps/ (276 New Questions)