A Review Of High Quality 98-361 Free Practice Questions

Your success in Microsoft 98-361 is our sole target and we develop all our 98-361 braindumps in a way that facilitates the attainment of this target. Not only is our 98-361 study material the best you can find, it is also the most detailed and the most updated. 98-361 Practice Exams for Microsoft 98-361 are written to the highest standards of technical accuracy.

Online 98-361 free questions and answers of New Version:

NEW QUESTION 1

You have a Microsoft ASP.NET web application.
You need to store a value that can be shared across users on the server. Which type of state management should you use?

  • A. Session
  • B. ViewState
  • C. Application
  • D. Cookies

Answer: C

Explanation:
Application state is a data repository available to all classes in an ASP.NET application. Application state is stored in memory on the server and is faster than storing and retrieving information in a database. Unlike session state, which is specific to a single user session, application state applies to all users and sessions. Therefore, application state is a useful place to store small amounts of often-used data that does not change from one user to another.
Incorrect:
not A: Session State contains information that is pertaining to a specific session (by a particular client/browser/machine) with the server. It's a way to track what the user is doing on the site.. across multiple pages...amid the statelessness of the Web. e.g. the contents of a particular user's shopping cart is session data. Cookies can be used for session state. Not B: Viewstate is a state management technique in asp.net. ASP.NET Viewstate is preserving the data between the requests or postbacks and stored in hidden fields on the page.

NEW QUESTION 2

Which service can host an ASP.NET application?

  • A. Internet Information Services
  • B. Cluster Services
  • C. Remote Desktop Services
  • D. Web Services

Answer: A

Explanation:
Using Internet Information Services (IIS) Manager, you can create a local Web site for hosting an ASP.NET Web application.

NEW QUESTION 3

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.

Answer: C

Explanation:
In this example (see below), the Employee class contains two private data members, name and salary. As private members, they cannot be accessed except by member methods. Public methods named GetName and Salary are added to allow controlled access to the private members. The name member is accessed by way of a public method, and the salary member is accessed by way of a public read-only property.
Note: The private keyword is a member access modifier. Private access is the least permissive access level. Private members are accessible only within the body of the class or the struct in which they are declared
Example:
class Employee2
{
private string name = "FirstName, LastName"; private double salary = 100.0;
public string GetName()
{
return name;
}
public double Salary
{
get { return salary; }
}
}

NEW QUESTION 4

You are building a web application that enables international exchange students to schedule phone calls with their prospective schools.
The application allows students to indicate a preferred date and time for phone calls. Students may indicate no preferred time by leaving the date and time field empty. The application must support multiple time zones.
Which data type should you use to record the student's preferred date and time?

  • A. uLong?
  • B. DateTimeOffset?
  • C. SByte
  • D. Date

Answer: B

Explanation:
datetimeoffset: Defines a date that is combined with a time of a day that has time zone awareness and is based on a 24-hour clock.
Incorrect:
Date: Defines a date.
sByte: The sbyte keyword indicates an integral type that stores values in the range of -128 to 127.

NEW QUESTION 5

You are reviewing a design for a database. A portion of this design is shown in the exhibit. Note that you may choose to view either the Crow's Foot Notation or Chen Notation version of the design. (To view the Crow's Foot Notation, click the Exhibit A button. To view the Chen Notation, click the Exhibit B button.)
98-361 dumps exhibit
98-361 dumps exhibit
Which term is used to describe the relationship between Customer and Order?

  • A. many-to-many
  • B. one-to-many
  • C. one-dimensional
  • D. one-to-one
  • E. multi-dimensional

Answer: B

Explanation:
A customer can have many orders.

NEW QUESTION 6

You have a Windows Service running in the context of an account that acts as a non- privileged user on the local computer. The account presents anonymous credentials to any remote server.
What is the security context of the Windows Service?

  • A. LocalSystem
  • B. User
  • C. NetworkService
  • D. LocalService

Answer: D

Explanation:
LocalService , which runs in the context of an account that acts as a non- privileged user on the local computer, and presents anonymous credentials to any remote server;

NEW QUESTION 7

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 8

What are two possible options for representing a Web application within Internet Information Services (IIS)? (Each correct answer presents a complete solution. Choose two. )

  • A. web site
  • B. virtual directory
  • C. application directory
  • D. application server
  • E. Web directory

Answer: AB

Explanation:
* Create a Web Application
An application is a grouping of content at the root level of a Web site or a grouping of content in a separate folder under the Web site's root directory. When you add an application in IIS 7, you designate a directory as the application root, or starting point, for the application and then specify properties specific to that particular application, such as the application pool that the application will run in.
* You can make an Existing Virtual Directory a Web Application.

NEW QUESTION 9

This question requires that you evaluate the underlined text to determine if it is correct.
The bubble sort algorithm steps through the list to be sorted, comparing adjacent items and swapping them if they are in the wrong order.
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. merge
  • C. library
  • D. insertion

Answer: A

NEW QUESTION 10

You have a table named ITEMS with the following fields:
✑ ID (integer, primary key, auto generated)
✑ Description (text)
✑ Completed (Boolean)
You need to insert the following data in the table:
"Cheese", False
Which statement should you use?

  • A. INSERT INTO ITEMS (ID, Description, Completed) VALUES (1, 'Cheese', 0)
  • B. INSERT INTO ITEMS (Description, Completed) VALUES ('Cheese', 1)
  • C. INSERT INTO ITEMS (10, Description, Completed) VALUES (NEWID(), 'Cheese', 6)
  • D. INSERT INTO ITEMS (Description, Completed) VALUES ('Cheese', 0)

Answer: D

Explanation:
The string values TRUE and FALSE can be converted to bit values: TRUE is converted to 1 and FALSE is converted to 0.
Incorrect:
Not A, not C: ID is autogenerated and should not be specified.

NEW QUESTION 11

You are creating an application for a help desk center. Calls must be handled in the same order in which they were received.
Which data structure should you use?

  • A. Queue
  • B. Hashtable
  • C. Stack
  • D. Binary tree

Answer: :A

NEW QUESTION 12

The elements of an array must be accessed by:

  • A. Calling the item that was most recently inserted into the array.
  • B. Calling the last item in the memory array.
  • C. Using an integer index.
  • D. Using a first-in, last-out (FILO) process.

Answer: C

NEW QUESTION 13

You create an application that uses Simple Object Access Protocol (SOAP).
Which technology provides information about the application's functionality to other applications?

  • A. Web Service Description Language (WSDL)
  • B. Extensible Application Markup Language (XAML)
  • C. Common Intermediate Language (CIL)
  • D. Universal Description, Discovery, and Integration (UDDI)

Answer: A

Explanation:
WSDL is often used in combination with SOAP and an XML Schema to provide Web services over the Internet. A client program connecting to a Web service can read the WSDL file to determine what operations are available on the server. Any special datatypes used are embedded in the WSDL file in the form of XML Schema. The client can then use SOAP to actually call one of the operations listed in the WSDL file using for example XML over HTTP.

NEW QUESTION 14

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

Answer: C

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.

NEW QUESTION 15
DRAG DROP
You are extending an application that stores and displays the results of various types of foot races. The application contains the following definitions:
98-361 dumps exhibit
The following code is used to display the result for a race:
98-361 dumps exhibit
The contents of the console must be as follows:
✑ 99 seconds
✑ 1.65 minutes
✑ 99
You need to implement the FootRace class.
Match the method declaration to the method body. (To answer, drag the appropriate declaration from the column on the left to its body on the right. Each declaration may be used once, more than once, or not at all. Each correct match is worth one point.)
98-361 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
98-361 dumps exhibit

NEW QUESTION 16

What is displayed when you attempt to access a Web service by using a Web browser?

  • A. a listing of methods that are available in the Web service
  • B. a directory listing of the Web service's application structure
  • C. an error page explaining that you have accessed the Web service incorrectly
  • D. a visual depiction of your preliminary connection to the Web service

Answer: A

Explanation:
The server, in response to this request, displays the Web service's HTML description page.
The Web service's HTML description page shows you all the Web service methods supported by a particular Web service. Link to the desired Web service method and enter the necessary parameters to test the method and see the XML response.

NEW QUESTION 17
HOTSPOT
You have a base class named Tree with a friend property named color and a protected property named NumberOfLeaves. In the same project, you also have a class named Person.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
98-361 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
98-361 dumps exhibit

NEW QUESTION 18
DRAG DROP
You are extending an application that stores and displays the results of various types of foot races. The application contains the following definitions:
98-361 dumps exhibit
The following code is used to display the result for a race:
98-361 dumps exhibit
The contents of the console must be as follows:
✑ 99 seconds
✑ 1.65 minutes
✑ 99
You need to implement the FootRace class.
Match the method declaration to the method body, (To answer, drag the appropriate declaration from the column on the left to its body on the right. Each declaration may be used once, more than once, or not at all. Each correct match is worth one point.)
98-361 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
98-361 dumps exhibit

NEW QUESTION 19

You execute the following code.
98-361 dumps exhibit
What will the variable result be?

  • A. 1
  • B. 2
  • C. 3
  • D. 4

Answer: B

NEW QUESTION 20

You are creating an application that presents users with a graphical interface in which they can enter data. The application must run on computers that do not have network connectivity.
Which type of application should you choose?

  • A. Console-based
  • B. Windows Forms
  • C. Windows Service
  • D. ClickOnce

Answer: B

Explanation:
Use Windows Forms when a GUI is needed.

NEW QUESTION 21

Class C and Class D inherit from Class B. Class B inherits from Class A. The classes have the methods shown in the following table.
98-361 dumps exhibit
All methods have a protected scope.
Which methods does Class C have access to?

  • A. only m1, m3
  • B. only m2, m3
  • C. m1, m3, m4
  • D. m1, m2, m3
  • E. m2, m3, m4
  • F. only m3, m4

Answer: D

NEW QUESTION 22

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 client computers
  • C. on the computer that hosts the application
  • D. on the Application Layer Gateway Service

Answer: C

Explanation:
IIS is run on the web server. The web server is hosting the application.

NEW QUESTION 23

Which three items are benefits of encapsulation? (Choose three.)

  • A. restricted access
  • B. flexibility
  • C. maintainability
  • D. performance
  • E. inheritance

Answer: ABC

Explanation:
Encapsulation is the packing of data and functions into a single component. In programming languages, encapsulation is used to refer to one of two related but distinct notions, and sometimes to the combination thereof:
* A language mechanism for restricting access to some of the object's components.
* A language construct that facilitates the bundling of data with the methods (or other functions) operating on that data.
Incorrect:
not E: Encapsulation is one of the four fundamental OOP concepts. The other three are inheritance, polymorphism, and abstraction.

NEW QUESTION 24
HOTSPOT
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
98-361 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
98-361 dumps exhibit

NEW QUESTION 25
......

100% Valid and Newest Version 98-361 Questions & Answers shared by Certleader, Get Full Dumps HERE: https://www.certleader.com/98-361-dumps.html (New 276 Q&As)