The professionals, who want to end up being experts in their fields and also have a new wish to mount towards the climax of their capability and achievement, take element in diverse Microsoft certification exams. Microsoft 98-361 exam is a comprehensive way to check the particular candidates knowledge and abilities in a relevant discipline of function. Microsoft 98-361 online practice exams are authentic certifications in which guarantee your own manager that you are highly competent and competent. Microsoft 98-361 practice exams incorporate all the questions and answers to help you within passing the genuine exam with higher marks. If you wish to be a new triumphant in your series of function and end up being different coming from others, you need to use the particular Microsoft Microsoft 98-361 dumps guide. Using 98-361 on-line training could lay a solid foundation for the desired jobs.
Q51. 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 you use to define the formatting and layout of the page content?
A. Cascading Style Sheet (CSS)
B. Hypertext Markup Language (HTML)
C. JavaScript
D. Hypertext Transmission Protocol (HTTP)
Answer: A
Q52. You are planning to develop a new software system for your organization. Someone needs to be responsible for developing system manuals and help files. Which of the following participants should you identify for this task?
A. user interface designer
B. content developer
C. user interface designer
D. technical writer
Answer: D
Q53. 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 the user clicks the previous or next button. Which of the following data structures will best suit your requirements?
A. array
B. circular linked list
C. linked list
D. doubly linked list
Answer: D
Q54. You need to develop a C# program that exports the contents of the Customers table to an XML file. The exported data must be in the following format:
<Customer CustomerID="ALFKI" ContactName="Maria Anders" Phone="030-007-4321" />
<Customer CustomerID="ANATR" ContactName="Ana Trujillo" Phone="(5) 555-4729" />
Which of the following code segments should you use to export the Customers table to the specified XML format?
A. foreach(DataColumn c in dataset1.tables["Customers"].Columns)
{
B. ColumnMapping = MappingType.Attribute;
}
dataSet1.WriteXml("Customers.xml");
C. foreach(DataColumn c in dataset1.tables["Customers"].Columns)
{
D. ColumnMapping = MappingType.Element;
}
dataSet1.WriteXml("Customers.xml");
E. foreach(DataColumn c in dataset1.tables["Customers"].Columns)
{
F. ColumnMapping = MappingType.Attribute;
}
dataSet1.WriteXml("Customers.xml", XmlWriteMode.WriteSchema);
G. foreach(DataColumn c in dataset1.tables["Customers"].Columns)
{
H. ColumnMapping = MappingType.Element;
}
dataSet1.WriteXml("Customers.xml", XmlWriteMode.WriteSchema);
Answer: A
Q55. You are updating an existing Windows Forms application. The form hosts a DateTimePicker control named dateTimePicker1. You need to write code that executes when the value of the dateTimePicker1 control is changed. You write a method, ProcessValueChanged, that contains the code you want to execute. What code should you write to invoke the ProcessValueChanged method? Any code that your write must not affect existing functionality of the application.
A. dateTimePicker1.ValueChanged += new System.EventHandler( ProcessValueChanged);
B. dateTimePicker1.ValueChanged = new System.EventHandler( ProcessValueChanged);
C. dateTimePicker1.Value += new System.EventHandler( ProcessValueChanged);
D. dateTimePicker1.Value = new System.EventHandler( ProcessValueChanged);
Answer: A
Q56. You are developing a Windows Form with a multiple document interface (MDI). You need to write code that arranges the child windows vertically within the client region of the MDI parent form. Which of the following MdiLayout values should you pass to the LayoutMdi method?
A. MdiLayout.TileVertical
B. MdiLayout.Cascade
C. MdiLayout.TileHorizontal
D. MdiLayout.ArrangeIcons
Answer: A
Q57. 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 statements is true?
A. The highest normal form of the Customer table is the first normal form.
B. The highest normal form of the Customer table is the second normal form.
C. The highest normal form of the Customer table is the third normal form.
D. The Customer table is not normalized.
Answer: C
Q58. 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 third normal form. Which of the following statements must be true for your tables? (Choose all that apply.)
A. None of the columns in the table should have multiple values in the same row of data.
B. All non-key columns are functionally dependent on the entire primary key.
C. At least one non-key column is functionally dependent on the entire primary key.
D. Non-key attributes don’t share any functional dependency.
E. Non-key attributes share functional dependency.
Answer: ABD
Q59. You are invoking a Web service method that returns an ArrayList object. The client application is written is C#, whereas the Web service is written in Visual Basic. The Web service is outside your corporate firewall. You receive an "object not found" error when you call the method that returns the ArrayList object but can call other methods successfully from the same Web service. What could be the problem?
A. The client and the Web service are not written in the same programming language.
B. The firewall is blocking all SOAP calls.
C. The client project does not contain a reference to the System.Collection namespace.
D. The ArrayList class cannot be serialized.
Answer: C
Q60. 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 overflow capacity. When the manufacturing capacity is available, the items in the buffer need to be processed in the order in which they were added to the buffer. Which data structure should you use to implement such buffer?
A. array
B. linked list
C. stack
D. queue
Answer: D