Latest 70-528, 70-536, 70-447
- Saturday, April 19, 2008, 22:47
- Study Guide
- 431 views
- 2 comments
http://rapidshare.com/files/20893966/_Microsoft__ActualTests__070-528_EXAM_Q_AND_A_V03.09.07.pdf.html
http://rapidshare.com/files/20894276/_Microsoft__ActualTests__070-536_EXAM_Q_AND_A_V01.31.07.pdf.html
http://rapidshare.com/files/20894733/_Microsoft__ActualTests__070-447_EXAM_Q_AND_A_V02.26.07.pdf.html
QUESTION 1
You work as the Web developer at Certkiller .com. Certkiller .com has its headquarters in Chicago and
a branch office in New Zealand. You develop a new ASP.NET application named Certkiller App12.
You configure Certkiller App12 to display company news and policy information to employees located
at the New Zealand branch office.
The Default.aspx page contains a Web Form label control named currentDateLabel. The following
code is specified in the Page.Load event handler for Default.aspx:
currentDateLabel.Text = DateTime.Now.ToString(“D”)
You want to ensure that the date information is displayed correctly for the New Zealand branch office
employees.
How will you accomplish the task?
A. In the Web.config file for Certkiller App12, configure the culture attribute of the globalization
element as en-NZ.
B. In the Web.config file for Certkiller App12, configure the uiCulture attribute of the globalization
element as en-NZ.
C. In Visual Studio .NET, configure the responseEncoding attribute in the page directive as
Default.aspx to UTF-8.
D. In Visual Studio .NET, save the Default.aspx page for each version of Certkiller App12 by choosing
Advanced Save Options from the File menu and then selecting UTF-8.
Answer: A
Explanation: The culture attribute of the globalization element specifies the default culture for processing
incoming Web requests.
Reference: .NET Framework General Reference,
Incorrect Answers
B: The uiculture attribute of the globalization specifies the default culture for processing localedependent
resource searches. It does not apply in this scenario.
C, D: The UTF8 Encoding Class encodes Unicode characters using UCS Transformation Format, 8-bit
form (UTF-8). This encoding supports all Unicode character values and surrogates. However, it does
not help in displaying data in New Zealand format.
Actualtests.org – The Power of Knowing
QUESTION2
You work as the Web developer at Certkiller .com. Certkiller .com has its headquarters in Chicago and
a branch office in Berlin. You are currently developing an online stock Web site which will be used by
employees at the Chicago and Berlin offices.
You must ensure that when an employee selects an item of stock, the cost of the specific item is shown
in the United States currency and in the German currency. For each locale, the appropriate cost must
be exhibited.
Which code should you use to ensure that the currency is returned in the proper format by using the
input parameter?
A. Function MyGetDisplayValue(value As Double, _
inputRegion As String) As String
Dim display As String
Dim region As RegionInfo
region = New RegionInfo(inputRegion)
display = value.ToString(“C”)
display += region.CurrencySymbol
Return display
End Function
B. Function MyGetDisplayValue(value As Double, _
inputCulture As String) As String
Dim display As String
Dim Local Format As NumberFormatInfo = _
CType(NumberFormatInfo.CurrentInfo.Clone(), _
NumberFormatInfo)
display = value.ToString(“C”, LocalFormat)
Return display
End Function
C. Function MyGetDisplayValue(value As Double, _
inputRegion As String) As String
Dim display As String
Dim region As RegionInfo
region = New RegionInfo(inputRegion)
display = value.ToString(“C”)
display += region.ISOCurrencySymbol
Return display
End Function
D. Function MyGetDisplayValue(value As Double, _
inputCulture As String) As String
Dim display As String
Dim culture As CultureInfo
culture = New CultureInfo(inputCulture)
display = value.ToString(“C”, culture)
Return display
End Function
Actualtests.org – The Power of Knowing
Answer: D
Explanation: We create a new CultureInfo object based on the inputCulture parameter. We then produce
the result with “C” constant, representing the current culture, and the new CultureInfo object: display =
value.ToString(“C”, culture)
Note: The CultureInfo Class contains culture-specific information, such as the language, country/region,
calendar, and cultural conventions associated with a specific culture. This class also provides the
information required for performing culture-specific operations, such as casing, formatting dates and
numbers, and comparing strings.
Reference:
.NET Framework Developer’s Guide, Formatting Numeric Data for a Specific Culture [Visual Basic]
Incorrect Answers
B: The NumberFormatInfo class defines how currency, decimal separators, and other numeric symbols
are formatted and displayed based on culture. However, we should create a CultureInfo object, not a
NumberFormatInfo object).
A, C: We should use the CultureInfo class not the RegionInfo class.
Note: In contrast to CultureInfo, RegionInfo does not represent preferences of the user and does not
depend on the user’s language or culture.
QUESTION 3
You work as the Web developer at Certkiller .com. You are developing a new ASP.NET application
named Certkiller App06. Certkiller App06 will be available on the company intranet, and will be used
by users to schedule rooms for meetings.
Your main page contains a Calendar control which employees must use to specify the date for which
to reserve a specific meeting room. The code for the Calendar control is as follows:
You must ensure that a message stating “Employee Meeting” is shown beneath each Friday displayed
in the calendar. You must also ensure that each weekday of the current month is shown in a green
highlight in the calendar.
You decide to write the configuration which will result in the WorkDays.DayRender event handler
performing these functions. Your code is as follows:
1 Sub WorkDays_DayRender(sender As Object, _
e As DayRenderEventArgs)
2
3 End Sub
Choose the code which you should add at line 2 of the event handler?
A. If e.Day.Data.DayOfWeek = _
DayOfWeek.Friday Then
e.Cell.Controls.Add( _
New LiteralControl(“Employee Meeting”)]
End If
If Not e.day.IsWeekend Then
e.Cell.BackColor = _
System.Drawing.Color.Green
Actualtests.org – The Power of Knowing
End If
B. If e.Day.Date.Day = 6 _
And e.Day.IsOtherMonth Then
e.Cell.Controls.Add( _
New LiteralControl(“Employee Meeting”)]
e.Cell.BackColor = _
System.Drawing.Color.Green
End If
C. If e.Day.Date.Day = 6 Then
e.Cell.Controls.Add( _
New LiteralControl(“Employee Meeting”)]
End If
If Not e.Day.IsWeekend And Not _
e.Day.IsOtherMonth Then
e.Cell.BackColor = _
System.Drawing.Color.Green
End If
D. If e.Day.Date.DayOfWeek = _
DayOfWeek.Friday Then
e.Cell.Controls.Add( _
New LiteralControl(“Employee Meeting”)]
End If
If Not e.Day.IsWeekend And Not
e.Day.IsOtherMonth Then
e.Cell.BackColor = _
System.Drawing.Color.Green
End If
Answer: D
Explanation: We need two “if” statements to correctly achieve our goal. This statement:
If e.Day.Date.DayOfWeek = DayOfWeek.Friday
Then e.Cell.Controls.Add(New LiteralControl(“Employee Meeting”)]
will allow us to display a message that reads “Employee Meeting” below every Friday displayed in the
calendar. While this:
If Not e.Day.IsWeekend And Not e.Day.IsOtherMonth
Then e.Cell.BackColor = System.Drawing.Color.Green
will find all the weekdays for the current month displayed in the calendar and show then with a yellow
highlight.
Incorrect Answers
A: We should check whether it falls on the next month, by using IsOtherMonth
B: We need to check for the day of the week using DayOfWeek
C: We need to check for the day of the week using DayOfWeek
Free download:passguide Microsoft 70-536
Free download:passguide Microsoft 70-536
password:www.certbible.org
PassGuide Cisco Exams Questions & Training Materials
- Free Passguide Microsoft mcts 70-401 2.93
- Free [offer] 70-620 Free Version , Sybex Mcts, Only For 5 Days!
- Free passguide Microsoft TS 70-504(CSharp)
- Free Passguide Microsoft 70-432 v2.73
- Free Passguide Microsoft MB6-511 v2.93
- Free passguide Microsoft MB6-203
- Free passguide Microsoft MB3-230
- Free Passguide Microsoft 70-561 v2.73
- Free Passguide testinside passguide Microsoft Windows Vista, Configuring Exam 70-620 vce
- Free Passguide topcerts Microsoft Windows Vista, Configuring Exam 70-624 v2.73 vce
- Free Microsoft ActualTests 70-624 by Zarra 92q.vce
- Free Passguide Microsoft 71-433 v2.73
About the Author
2 Comments on “Latest 70-528, 70-536, 70-447”
Write a Comment
Gravatars are small images that can show your personality. You can get your gravatar for free today!


CBT Nuggets Exam Pack 70-528 NET 2.0 Web Based Client Development
Create full-featured dynamic web sites from scratch using Visual Studio, From video one, you