98-361 Exam Questions
344 real 98-361 exam questions with expert-verified answers and explanations. Page 2 of 7.
- Question #51
Your application must pull data from a database that resides on a separate server. Which action must you perform before your application can retrieve the data?
- Question #52Understanding Object-Oriented Programming
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 implem...
inheritancebase class method callMyBase keywordmethod invocation - Question #53Understanding Object-Oriented Programming
Which of the following must exist to inherit attributes from a particular class?
inheritanceis-a relationshipclass hierarchyOOP fundamentals - Question #54Understanding Object-Oriented Programming
Which type of function can a derived class override?
virtual functionsmethod overridingaccess modifierspolymorphism - Question #55
Class C and Class D inherit from ClassB. Class B inherits from Class A. The classes have the methods shown in the following table. All methods have a protected scope. Which methods...
- Question #56
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 th...
- Question #57Understanding Object-Oriented Programming
How many parameters can a default constructor have?
default constructorconstructor parametersobject instantiation - Question #58Understanding Web Applications
Which function does Simple Object Access Protocol (SOAP) provide when using Web services?
SOAPweb servicescommunications protocol - Question #59Understanding Web Applications
Which term is used to describe small units of text that are stored on a client computer and retrieved to maintain state?
cookiessession stateclient-side storagestate management - Question #60Understanding Web Applications
You are creating a Web application. The application will be consumed by client computers that run a variety of Web browsers. Which term is used to describe the process of making th...
web hostingdeploymentweb application lifecycle - Question #61Understanding Web Applications
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. Whi...
server-side programmingdata validationreal-time verificationclient vs server - Question #62Understanding Web Applications
You need to group all the style settings into a separate file that can be applied to all the pages in a Web application. What should you do?
CSScascading style sheetsweb designstyle separation - Question #63Understanding Web Applications
Where must Internet Information Services (IIS) be installed in order to run a deployed ASP. NET application?
IISASP.NET hostingweb server deployment - Question #64Understanding Web Applications
What is displayed when you attempt to access a Web service by using a Web browser?
web servicesbrowser accessWSDLservice discovery - Question #65
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. Whi...
- Question #67Understanding Web Applications
You are migrating several HTML pages to your website. Many of these pages contain HTML <center> and <font> tags. Which XHTML document type declaration should you use?
XHTMLDOCTYPE declarationHTML transitionalweb standards - Question #68Understanding General Software Development
This question requires that you evaluate the underlined text to determine if it is correct. When creating a site to utilize message queuing, the IP address must be configured to MS...
MSMQmessage queuingprotocol configuration - Question #69Understanding Desktop Applications
You need to debug a Windows Service application by using breakpoints. What should you do?
Windows ServicedebuggingVisual Studio attach to processbreakpoints - Question #71Understanding Core Programming
What does the Console.Error property do within a console-based application?
Console.Errorstandard error streamconsole applicationI/O streams - Question #72Understanding Core Programming
This question requires that you evaluate the underlined text to determine if it is correct. The default entry point for a console application is the Class method. Select the correc...
Main methodentry pointconsole applicationprogram structure - Question #73Understanding Object-Oriented Programming
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 answ...
upcastingtype conversioncastinginheritance hierarchy - Question #75
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 implement...
- Question #76
You are developing an application that tracks tennis matches. A match is represented by the following class: A match is created by using the following code: How many times is the L...
- Question #79Understanding General Software Development
This question requires that you evaluate the underlined text to determine if it is correct. The duplication of code so that modifications can happen in parallel is known as separat...
branchingversion controlsource controlparallel development - Question #84
The following functions are defined: What does the console display after the following line? Printer(2);
- Question #85Understanding Core Programming
The throw keyword is used to perform which two actions? (Choose two.)
throw keywordexception handlingre-throwerror propagation - Question #87Understanding Databases
Which three phrases are advantages of connection pooling? (Choose three.)
connection poolingdatabase performancescalabilityresource management - Question #88Understanding Databases
You are creating a database for a student directory. The Students table contains the following fields: Which statement will retrieve only the first name, last name, and telephone n...
SQL SELECTcolumn selectionFROM clausequery syntax - Question #90Understanding Databases
This question requires that you evaluate the underlined text to determine if it is correct. The benefit of using a transaction when updating multiple tables is that the update cann...
transactionsatomicityACID propertiesdatabase integrity - Question #91
What are two advantages of normalization in a database? (Choose two)
- Question #93Understanding General Software Development
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 produc...
user acceptance testingunit testingtesting lifecyclesoftware testing types - Question #94Understanding Databases
You need to create a stored procedure that passes in a person's name and age. Which statement should you use to create the stored procedure?
stored proceduresparametersCREATE PROCEDURET-SQL - Question #95
You have a SQL Server database named MyDB that uses SQL Server Authentication. Which connection string should you use to connect to MyDB?
- Question #96
You are developing a database that other programmers will query to display race results. You need to provide the ability to query race results without allowing access to other info...
- Question #97
This question requires that you evaluate the underlined text to determine if it is correct. A piece of text that is 4096 bytes or smaller and is stored on and retrieved from the cl...
- Question #98
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 t...
- Question #99
Which programming language is characterized as client-side, dynamic and weakly typed?
- Question #101
When a web service is referenced from a client application in Microsoft Visual Studio, which two items are created? (Choose two.)
- Question #102
All objects in .NET inherit from which item?
- Question #103Understanding Object-Oriented Programming
You have a class with a property. You need to ensure that consumers of the class can write to the value of the property. Which keyword should you use?
property accessorsset keywordclass propertiesencapsulation - Question #105Understanding Desktop Applications
You are creating an application that presents the user with a Windows Form. Which event is triggered each time the Windows Form receives focus?
Windows Formsform eventsActivated eventform lifecycle - Question #106Understanding Desktop Applications
What are the three basic states that a Windows service can be in? (Choose three.)
Windows Serviceservice statesrunningstopped - Question #107Understanding Desktop Applications
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...
Windows ServiceLocalServicesecurity contextservice accounts - Question #108Understanding Core Programming
This question requires that you evaluate the underlined text to determine if it is correct. Arguments are passed to console applications as a Hashtable object. Select the correct a...
console applicationscommand-line argumentsstring arrayMain method - Question #109Understanding Core Programming
You run the following code: What is the value of result when the code has completed?
code tracingloopsvariable stateprogram execution - Question #110
This question requires that you evaluate the underlined text to determine if it is correct. To minimize the amount of storage used on the hard drive by an application that generate...
- Question #111
You are designing a Windows Store application. You need to design the application so that users can share content by connecting two or more devices by physically tapping the device...
- Question #114Understanding Web Applications
You have a website that includes a form for usemame and password. You need to ensure that users enter their username and password. The validation must work in all browsers. Where s...
form validationclient-side validationserver-side validationcross-browser compatibility - Question #115Understanding Web Applications
Which service can host an ASP.NET application?
ASP.NETIISweb hostingweb server - Question #116Understanding Databases
This question requires that you evaluate the underlined text to determine if it is correct. A table whose attributes depend only on the primary key must be at least second normal f...
database normalizationthird normal formprimary keyfunctional dependency