[2016-New] 100% Pass GreatExam Microsoft 70-511 Practice Test Free Version (51-60)

2016 June Microsoft Official New Released 70-511 Q&As in GreatExam.com!

100% Free Download! 100% Pass Guaranteed!

Are you struggling for the 70-511 exam? Good news, GreatExam Microsoft technical experts have collected all the questions and answers which are updated to cover the knowledge points and enhance candidates’ abilities. We offer the latest 70-511 PDF and VCE dumps with new version VCE player for free download, and the new 70-511 practice test ensures your 70-511 exam 100% pass.

Following questions and answers are all new published by Microsoft Official Exam Center: (The full version is in the end of the article!!!)

QUESTION 51
You use Microsoft .NET Framework 4 to create a Windows Forms application.
You write the following code segment. (Line numbers are included for reference only.)
01 sealed class FormSettings : ApplicationSettingsBase
02 {
04 public String Description
05 {
06 get {return (String)this[“Description”]; }
07 set {this[“Description”] = value;}
08 }
09 }
You need to ensure that the first time each user opens the application, a text field displays the following message:
“Please enter your setting.”
Which code segment should you insert at line 03?

A.    [UserScopedSettingO ]
[DefaultSettingValue(“Please enter your setting.”)]
B.    [UserScopedSetting() ]
[SettingsDescription(“Description: Please enter your setting.”)]
C.    [ApplicationScopedSetting() ]
[DefaultSettingValue(“Please enter your setting.”)]
D.    [ApplicationScopedSetting() ]
[SettingsDescription(“Description: Please enter your setting.”)]

Answer: A

QUESTION 52
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
The application uses the drag-and-drop functionality.
You need to ensure that the drag-and-drop operation is stopped when a user moves the cursor outside the boundaries of the application form.
Which enumeration member should you use?

A.    DragAction.Cancel
B.    DragAction.Drop
C.    DragDropEffects.None
D.    DragDropEffects.All

Answer: A

QUESTION 53
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
You create a custom control named Wheel.
You need to ensure that the Speed property of Wheel can be animated.
What should you do?

A.    Inherit the DependencyObject class.
B.    Declare the Speed property as a dependency property.
C.    Declare an animation of the Speed property from within the code-behind file.
D.    Implement the System.Windows.Media.Animation.IAnimatable interface with the Wheel
class.

Answer: B

QUESTION 54
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
The application uses the background worker process (BWP).
When the user clicks a button, the background worker executes a method named DoCalculations asynchronously.
You need to implement a progress bar on the user interface (UI) that Informs the user of the progress of DoCalculations.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

A.    Modify the Value property of the progress bar in DoCalculations.
B.    Modify the Value property of the progress bar in the ProgressChanged event handler of the
background worker.
C.    Modify the Value property of the progress bar in the RunWorkerCompleted event handler of
the background worker.
D.    Call the ReportProgress method of the background worker in DoCalculations.
E.    Call the ReportProgress method of the background worker in the DoWork event handler of
the background worker.

Answer: BD

QUESTION 55
You use Microsoft .NET Framework 4 to create a Windows Forms application.
You need to allow the user interface to use the currently configured culture settings in the Control Panel.
Which code segment should you use?

A.    Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;
B.    Thread.CurrentThread.CurrentCulture = Thread.CurrentThread.CurrentUICulture;
C.    Thread.CurrentThread.CurrentUICulture = CultureInfo.InstalledUICulture;
D.    Thread.CurrentThread.CurrentCulture = CultureInfo.InstalledUICulture;

Answer: A

QUESTION 56
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
The application has multiple data entry windows.
Each window contains controls that allow the user to type different addresses for shipping and mailing.
All addresses have the same format.
You need to ensure that you can reuse the controls.
What should you create?

A.    a user control
B.    a data template
C.    a control template
D.    a control that inherits the Canvas class

Answer: A

QUESTION 57
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application.
The application contains a set of Button controls.
You need to ensure that any button that contains no content is highlighted when the mouse pointer is located over it.
Which code fragment should you use?

A.    < Style TargetType=”{x:Type Button}” >

< Setter Property=”Background” Value=”Yellow” / >
< Style.Triggers >
< MultiTrigger >
< MultiTrigger.Conditions >
< Condition Property=”IsMouseOver” Value=”True” /
< Condition Property=”Content” Value=”{x:Null}” /
< /MultiTrigger.Conditions >
< /MultiTrigger >
< /Style.Triggers >
< /Style >
B.    < Style TargetType=”{x:Type Button}” >

< Style.Triggers >
< Trigger Property=”IsMouseOver” Value=”True” >
< Setter Property=”Background” Value=”Yellow” / >
< /Trigger >
< Trigger Property=”Content” Value=”{ x :Null} ” >
< Setter Property=”Background” Value=”Yellow” / >
< /Trigger >
< /Style.Triggers >
</Style >
C.    < Style TargetType=”{x:Type Button)” >

< Setter Property=”Background” Value=”Yellow” / >
< Style.Triggers >
< MultiTrigger >
< MultiTrigger.Conditions >
< Condition Property=”IsHouseOver” Value=”True” / >
< Condition Property=”Content” Value=”Empty” / >
< /MultiTrigger.Conditions >
< /MultiTrigger >
< /Style.Triggers >
</Style >
D.    < Style TargetType=”{x:Type Button)” >

< Style.Triggers >
< Trigger Property=”IsMouseOver” Value=”True” >
< Setter Property=”Background” Value=”Yellow” / >
< /Trigger >
< Trigger Property=”Content” Value=”Empty” >
< Setter Property=”Background” Value=”Yellow” / >
< /Trigger >
< /Style.Triggers >
</Style >

Answer: A

QUESTION 58
You are developing a Windows Presentation Foundation (WPF) application to play audio files. You add a MediaElement control named mediaElementl and a Button control named btnPlayAudio to the design surface.
The MediaElement control Source attribute is set to an audio file.
The LoadedBehavior attribute is set to Manual.
You add the following code to the main window.
void playCommand_Executed(object sender, RoutedEventArgs e) { mediaElementl.Play();
}
You set the command of the button to MediaCommands.Play.
You need to ensure that the application will play the audio file when the button is pressed.
What should you add to the constructor of the main window?

A.    RoutedCommand playCommand = new RoutedCommand();
playCommand.CanExecuteChanged +=
new EventHandler(playCommand_Executed);
this.CommandBindings.Add(new CommandBinding(playCommand));
B.    RoutedUICommand playCommand = new RoutedUICommand();
playCommand.CanExecuteChanged +=
new EventHandler(playCommand_Executed);
this.CommandBindings.Add(new CommandBinding(playCommand));
C.    CommandBinding playCommand =
new CommandBinding(MediaCommands.Play);
playCommand.CanExecute +=
new CanExecuteRoutedEventHandler(playCommand_Executed);
this.CommandBindings.Add(playCommand);
D.    CommandBinding playCommand =
new CommandBinding(MediaCommands.Play);
playCommand.Executed +=
new ExecutedRoutedEventHandler(playCommand_Executed);
this.CommandBindings.Add(playCommand);

Answer: D

QUESTION 59
You are developing a Windows Presentation Foundation (WPF) application.
An event triggers a workflow such that a parent control executes the event handlers before the child controls.
You need to ensure that if a parent control’s event handler encounters an error, the subsequent handlers are not called.
What should you do?

A.    Use handlers for a tunneling routed event and mark the event as handled in the case of a
problem.
B.    Use handlers for a tunneling routed event and mark the event as handled in the finally
portion of a try-catch-finally code block.
C.    Use handlers for a bubbling routed event and mark the event as handled in the case of a
problem.
D.    Use handlers for a bubbling routed event and set the Handled property of the
RoutedEventArgs object to true in the catch portion of a try-catch-finally code block.

Answer: D

QUESTION 60
You are developing a Windows Presentation Foundation (WPF) application.
You need to use XAML to create a custom control that contains two Button controls.
From which base class should you inherit?

A.    FrameworkElement
B.    UIElement
C.    UserControl
D.    Button

Answer: C

We ensure our new version 70-511 PDF and VCE dumps are 100% valid for passing exam, because GreatExam is the top IT certification study training materials vendor. Many candidates have passed exam with the help of GreatExam’s VCE or PDF dumps. GreatExam will update the study materials timely to make them be consistent with the current exam. Download the free demo on GreatExam, you can pass the exam easily.

2016 Microsoft 70-511 exam dumps (All 300 Q&As) from GreatExam:

http://www.greatexam.com/70-511-exam-questions.html [100% Exam Pass Guaranteed!!!]