98-361 Exam Questions
344 real 98-361 exam questions with expert-verified answers and explanations. Page 7 of 7.
- Question #353
You are developing code that defines an InitFields method. The method takes two parameters of data type double and does not return any value to the calling code. Which of the follo...
- Question #354
You created a class named GeoShape. You defined a method called Area in the GeoShape class. This method calculates the area of a geometric shape. You want the derived classes of Ge...
- Question #355
Suppose that you defined a class Scenario that defines functionality for running customized pivot transform on large data sets. You do not want the functionality of this class to b...
- Question #356
You need to provide printing functionality to several of your classes. Each class's algorithm for printing will likely be different. Also, not all the classes have an "is-a" relati...
- Question #357
You are writing code for a class named Book. You should be able to get a list of all books sorted by the author's last name. You need to write code to define this behavior of a cla...
- Question #358
Suppose that you are writing code for a class named Product. You need to make sure that the data members of the class are initialized to their correct values as soon as you create...
- Question #359
You are developing a sorting algorithm that uses partitioning and comparison to arrange an array of numbers in the correct order. You write a method that partitions the array so th...
- Question #360
You are studying various sorting algorithms to understand, analyze, and compare the various sorting techniques. Which of the following techniques should you utilize when using the...
- Question #361
You are developing a C# program that makes use of a singly linked list. You need to traverse all nodes of the list. Which of the following items will you need to accomplish this re...
- Question #362
Which of the following is not true about linked lists?
- Question #363
You are developing a program that performs frequent insert and delete operations on the data. Your requirement also dictates the capability to access previous and next records when...
- Question #364
You are developing a Web page for a medium-sized business. You want to separate the formatting and layout of the page from its content. Which of the following technologies should y...
- Question #365
You are designing a database for your company. You are reviewing the normalization for the database tables. You review the following Orders table: Which of the following statement...
- Question #366
You are designing a database for your company and are reviewing the normalization for the database tables. You review the following Customer table: Which of the following statement...
- Question #367
You are designing a database for your company and are reviewing the normalization for the database tables. You review the following Customer table: Which of the following statement...
- Question #368
As you design a database for your company, you review the normalization rules for the database tables. You need to ensure that your table design meets the requirements for the thir...
- Question #369
You are designing database for a new Web application. You need to identify appropriate relational database structure to satisfy business requirements. Which of the following activi...
- Question #370
You are developing a C# program for a bike rental company. The data is stored in a SQL Server 2000 server named BikeServer in a database named BikeDB. You must use the Windows Inte...
- Question #371
In your application, you are using a stack data structure to manipulate information. You need to find which data item will be processed next, but you don't want to actually process...
- Question #372
You want to display an image on your Web page. This image is stored on a separate Web server but can be accessed with a public URL. Which of the following HTML tags should you use...
- Question #373
You are developing a new Web page. You need to create hyperlinks that point to other pages on the World Wide Web. Which of the following methods should you use to create these hype...
- Question #374
You need to perform data validation to ensure that the input fields are not empty and the user's email address and phone numbers have been provided in the required format. You need...
- Question #375
You write large amount of JavaScript code for your Web site. You need to take advantage of caching techniques to make sure that Web pages load as quickly as possible. You also need...
- Question #376
Which of the following presses is responsible for providing the ASP.NET functionality?
- Question #377
You are creating a new class named Sphere derived from the Shape class. The Shape class has the following code: class Shape { public virtual void Area() { // additional code... } }...
- Question #378
You are creating a new class named Polygon. You write the following code: class Polygon : IComparable { public double Length { get; set; } public double Width { get; set; } public...
- Question #379
You are writing code for a new method named Process: void Draw(object o) { } The code receives a parameter of type object. You need to cast this object into the type Polygon. At ti...
- Question #380
You are writing code to handle events in your program. You define a delegate named PolygonHandler like this: public delegate void PolygonHandler(Polygon p); You also create a varia...
- Question #381
You are developing a C# application. You create a class of the name Widget. You use some third-party libraries, one of which also contains a class of the name Widget. You need to m...
- Question #382
You are reviewing a C# program that contains the following class: public class Rectangle { public double Length {get; set;} public double Width { get; set; } } The program executes...
- Question #383
You are C# developer who is developing a Windows application. You write the following code: Object o; Later in the code, you need to assign the value in the variable o to an object...
- Question #384
You are C# developer who is developing a Windows application. You need to provide derived classes the ability to share common functionality with base classes but still define their...
- Question #385
Arrange the various activities of an application lifecycle in the order in which they are likely to occur.
- Question #386
You have completed developing a new software application. To ensure the quality of the software, you need to verify that each method or function has proper test cases available. Wh...
- Question #387
You have completed developing several major features of a new software application. You plan to provide an early look at the product to important customers to gather some early fee...
- Question #388
You are developing a new application that optimizes the processing of a manufacturing plant's operations. You need to implement a data structure that works as a "buffer" for overfl...
- Question #389
You are developing a new application that optimizes the processing of a warehouse's operations. When the products arrive, they are stored on warehouse racks. To minimize the time i...
- Question #390
You are developing an application that uses a double dimensional array. You use the following code to declare the array: int[,] numbers = new int[,] { { 11, 7, 50, 45, 27 }, { 18,...
- Question #391
In your application, you are using a queue data structure to manipulate information. You need to find whether a data item exists in the queue, but you don't want to actually proces...
- Question #392
You are developing an application that uses the Stack data structure. You write the following code: Stack first = new Stack(); first.Push(50); first.Push(45); first.Pop(); first.Pu...
- Question #393
You are developing an ASP.NET Wep page that displays status of a shipment. You need to write some code that will change the Web page's appearance and assign values to some controls...
- Question #394
You write the following code in your Web page: protected void Page_Load (object sender, EventArgs e) { /* additional code here */ } You expect this code to be executed in response...
- Question #395
You need to display specific messages to users when their browser is not running JavaScript. Which of the following code segment should you use?
- Question #396
You are developing an ASP.NET application using C#. On your Web page, you want to display the results returned by a C# method named GetShipmentStatus when the page is rendered to t...