Microsoft 98-363 - Web Development Fundamentals Exam
Page: 3 / 41
Total 203 questions
Question #11 (Topic: Topic 1)
A JavaScript code example contains the following:
varmyArray = [];
myArray[0] = 'A';
myArray[1] = 'B';
myArray[5] = 'C';
What is the value of myArray [3]?
varmyArray = [];
myArray[0] = 'A';
myArray[1] = 'B';
myArray[5] = 'C';
What is the value of myArray [3]?
A. -1
B. 0
C. undefined
D. null
Answer: C
Question #12 (Topic: Topic 1)
A variable named Version must have the same value on every page for every user.
Which statement should you use to access Version?
Which statement should you use to access Version?
A. Response["Version"]
B. Application["Version"]
C. Session["Version"]
D. Server["Version"]
E. Request["Version"]
Answer: B
Question #13 (Topic: Topic 1)
You are deploying a web application to a production environment. Each webpage includes
the following page attribute:
<%@ Page WarningLeve1="4" Trace="true" CompilationMode="Auto" Debug="true"%>
Instructions: For each of the following statements, select Yes if the statement is true.
Otherwise, select No. Each correct selection is worth one point.
[Microsoft-98-363-9.0/Microsoft-98-363-9_2.png]
the following page attribute:
<%@ Page WarningLeve1="4" Trace="true" CompilationMode="Auto" Debug="true"%>
Instructions: For each of the following statements, select Yes if the statement is true.
Otherwise, select No. Each correct selection is worth one point.
[Microsoft-98-363-9.0/Microsoft-98-363-9_2.png]
Answer: [Microsoft-98-363-9.0/Microsoft-98-363-9_3.png]
Question #14 (Topic: Topic 1)
What does an <asp:TextBox> control use to retain its value between postbacks?
A. application state
B. query strings
C. session state
D. ViewState
Answer: D
Question #15 (Topic: Topic 1)
You are adding new features to a web application that provides information about music
and movies. The application includes the following code segment:
[Microsoft-98-363-9.0/Microsoft-98-363-10_2.png]
How many connection pools will be created when the code runs?
and movies. The application includes the following code segment:
[Microsoft-98-363-9.0/Microsoft-98-363-10_2.png]
How many connection pools will be created when the code runs?
A. 0
B. 1
C. 2
D. 3
Answer: C