98-361 Exam Questions - Online Test


98-361 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

certleader.com

Act now and download your Microsoft 98-361 test today! Do not waste time for the worthless Microsoft 98-361 tutorials. Download Down to date Microsoft Microsoft MTA Software Development Fundamentals exam with real questions and answers and begin to learn Microsoft 98-361 with a classic professional.

Check 98-361 free dumps before getting the full version:

NEW QUESTION 1

You have a class named Glass that inherits from a base class named Window. The Window class includes a protected method named break().
How should you call the Glass class implementation of the break() method?

  • A. Window.break();
  • B. Glass.break();
  • C. this.break();
  • D. base.break();

Answer: A

NEW QUESTION 2

This question requires that you evaluate the underlined text to determine if it is correct.
Internet Information Services (IIS) must be installed on the client computers in order to run a deployed ASP.NET application.
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. computer that hosts the application
  • C. computer that you plan to deploy from
  • D. Application Layer Gateway Service

Answer: B

Explanation:
Internet Information Services (IIS) must be installed on computer that hosts the application in order to run a deployed ASP.NET application.

NEW QUESTION 3

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 4

The throw keyword is used to perform which two actions? (Choose two.)

  • A. stop processing of the code
  • B. move error handling to a separate thread
  • C. raise exceptions
  • D. re-throw exceptions as a different type

Answer: CD

Explanation:
* The Throw statement throws an exception that you can handle with structured exception-handling code (Try...Catch...Finally) or unstructured exception- handling code (On Error GoTo). You can use the Throw statement to trap errors within your code because Visual Basic moves up the call stack until it finds the appropriate exception- handling code.
* This example throws an ApplicationException exception. Throw New ApplicationException

NEW QUESTION 5

You plan to create an application for your company. The application will run automated routines and write the results to a text-based log file. Little or no user interaction is required.
Security requirements on the host computers prevent you from running applications on startup, and users must be able to see the status easily on the screen. The host computers also have limited memory and monitors that display only two colors. These computers will have no network connectivity.
Which type of application should you use for this environment?

  • A. Windows Store app
  • B. console-based
  • C. DirectX
  • D. Windows Service

Answer: B

Explanation:
Building Console Applications
Applications in the .NET Framework can use the System.Console class to read characters from and write characters to the console. Data from the console is read from the standard input stream, data to the console is written to the standard output stream, and error data to the console is written to the standard error output stream.

NEW QUESTION 6
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 7

In your student directory database, the Students table contains the following fields:
firstName lastName emailAddress telephoneNumtoer
You need to retrieve the data from the firstName, lastName, and emailAddress fields for all students listed in the directory. The results must be in alphabetical order according to lastName and then firstName.
Which statement should you use?
98-361 dumps exhibit

  • A. Option A
  • B. Option B
  • C. Option C
  • D. Option D

Answer: A

Explanation:
to sort use: ORDER BY LastName, FirstName

NEW QUESTION 8

This question requires that you evaluate the underlined text to determine if it is correct. The Response.Redirect method is used to transfer processing of the current page to a new
page, and then return processing back to the calling page once processing of the new page has completed.
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. Server.Transfer method
  • C. Server.Execute method
  • D. meta http-equiv="refresh" tag

Answer: C

Explanation:
The Execute method calls an .asp file, and processes it as if it were part of the calling ASP script. The Execute method is similar to a procedure call in many programming languages.
Incorrect:
* Response.Redirect Method
The Redirect method causes the browser to redirect the client to a different URL.
* The Server.Transfer method sends all of the information that has been assembled for processing by one .asp file to a second .asp file.

NEW QUESTION 9
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 10

Which term is used to describe small units of text that are stored on a client computer and retrieved to maintain state?

  • A. trace
  • B. cookie
  • C. server transfer
  • D. cross-page post

Answer: B

Explanation:
HTTP is a stateless protocol. This means that user data is not persisted from one Web page to the next in a Web site. One way to maintain state is through the use of cookies. Cookies store a set of user specific information, such as a reference identifier for a database record that holds customer information.

NEW QUESTION 11

Which of the following must exist to inherit attributes from a particular class?

  • A. Public properties
  • B. A has-a relationship
  • C. Static members
  • D. An is-a relationship

Answer: A

Explanation:
There must be some public properties that can be inherited.

NEW QUESTION 12
HOTSPOT
You are reviewing the following code that saves uploaded images.
98-361 dumps exhibit
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 13

The purpose of the Finally section in an exception handler is to:

  • A. Execute code only when an exception is thrown.
  • B. Break out of the error handler.
  • C. Execute code regardless of whether an exception is thrown.
  • D. Conclude the execution of the application.

Answer: C

Explanation:
By using a finally block, you can clean up any resources that are allocated in a try block, and you can run code even if an exception occurs in the try block. Typically, the statements of a finally block run when control leaves a try statement. The transfer of control can occur as a result of normal execution, of execution of a break, continue, goto, or return statement, or of propagation of an exception out of the try statement.

NEW QUESTION 14

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 15

You need to debug a Windows Service application by using breakpoints. What should you do?

  • A. Write all events to an event log.
  • B. Set the Windows Service status to Paused.
  • C. Implement the Console.WriteLine method throughout the Windows Service.
  • D. use the Attach to Process menu in Microsoft Visual Studio.

Answer: D

Explanation:
* Because a service must be run from within the context of the Services Control Manager rather than from within Visual Studio, debugging a service is not as
straightforward as debugging other Visual Studio application types. To debug a service, you must start the service and then attach a debugger to the process in which it is running.
* To debug a service Install your service.
Start your service, either from Services Control Manager, Server Explorer, or from code. In Visual Studio, choose Attach to Process from the Debug menu.
Etc.

NEW QUESTION 16

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 17

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. Event driven
  • B. Structured
  • C. Service oriented
  • D. Functional

Answer: A

NEW QUESTION 18
HOTSPOT
You are developing a web application.
You need to create the following graphic by using Cascading Style Sheets (CSS):
98-361 dumps exhibit
Use the drop-down menus to select the answer choice that completes each statement. Each correct selection is worth one point.
98-361 dumps exhibit
98-361 dumps exhibit

  • A. Mastered
  • B. Not Mastered

Answer: A

Explanation:
98-361 dumps exhibit

NEW QUESTION 19

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 m3, m4
  • B. only m2, m3
  • C. only ml, m3
  • D. m1, m3, m3
  • E. m2, m3, m4
  • F. m1, m2, m3

Answer: F

NEW QUESTION 20

In this XHTML code sample, what will cause an error?
98-361 dumps exhibit

  • A. The line break tag is incorrectly formatted.
  • B. The HTML tags do not read XHTML.
  • C. The body tag is missing a background attribute,
  • D. All tags are not in uppercase.

Answer: A

Explanation:
In XHTML, the <br> tag must be properly closed, like this: <br />.

NEW QUESTION 21
......

P.S. DumpSolutions.com now are offering 100% pass ensure 98-361 dumps! All 98-361 exam questions have been updated with correct answers: https://www.dumpsolutions.com/98-361-dumps/ (276 New Questions)