Pass Your Microsoft 70-511 Exam Easy!

Get 100% Real Exam Questions, Accurate & Verified Answers By IT Experts

Fast Updates & Instant Download!

Certification Exam: 70-511 (TS: Windows Applications Development with Microsoft .NET Framework 4)

Download Free 70-511 Exam Questions

Exam 70-511 - TS: Windows Applications Development with Microsoft .NET Framework 4
Size: 986.75 KB
Posted Date: Sunday, September 30, 2012
# of downloads: 84
Free Download:
  Download Free 70-511 Exam Questions
Exam
70-511 - TS: Windows Applications Development with Microsoft .NET Framework 4
Size
986.75 KB
Posted Date
Sunday, September 30, 2012
# of downloads
84
Comments
* The most recent comment are at the top
  • Dran
  • Luxembourg
  • Oct 04, 2012

Another smart solution is to ask the questions on stackoverflow and vote for the best answer with the best solution. Then you put the solution explaination in the dump

  • Oct 04, 2012
  • Menganito
  • Spain
  • Oct 03, 2012

I had an idea to solve the questions more easily.
I created 10 surveys (unfortunately, on the website could only use 500 characters), each with a question.
We can vote for the answer that we believe correct.
Let's try

Q_001
http://doodle.com/c5fcya62imernegh
Q_002
http://doodle.com/zdxnxtm9b5wr78ec
Q_003
http://doodle.com/kami5kpyfbvwx2qm
Q_004
http://doodle.com/terfa7gmnda7hriv
Q_005
http://doodle.com/cz4x2nwrtn32s6kd
Q_006
http://doodle.com/zg47psiutxw6hbib
Q_007
http://doodle.com/2f6w6iyvydgprzb9
Q_008
http://doodle.com/56a6xb754b7mzkkg
Q_009
http://doodle.com/sirp2mu7b7u3v3gq
Q_010
http://doodle.com/ui7n3hhug4gd8ksc

  • Oct 03, 2012
  • Gabry
  • Italy
  • Oct 03, 2012

Floren the correct answer for :

01 <Window.Resources>
02 <Style TargetType={"x:TypeListBox}">
03 <Setter Property="ItemPage1">
04 <Setter.Value>
05 <ItemsPanelTemplate>
06 <StackPanel orientation="Horizontal"
07 VerticalAligment="Center"
08 HorizaontalAligment="Center"/>
09 </ItemsPanelTemplate>
10 </Setter.Value>
11 </Setter>
12 <Setter Property="Template">
13 <Setter.value>
14 <ControlTemplatetargetType="{x:TypeListBox}">
15
16 </ControlTemplate>
17 </Setter.Value>
18 </Setter>
19 </Window.Resources>

You need to ensure that all ListBox controls have a border that matches the background color of the ListBoxtemplate.

ANSWER: D

D) <Border Background="{TemplateBindingListBox.BackGround}">
<ItemsPresenter />
</Border>


See the msdn link with this example:http://msdn.microsoft.com/it-it/library/system.windows.controls.itemscontrol.itemspanel.aspx

  • Oct 03, 2012
  • jose
  • Brazil
  • Oct 03, 2012

Vanessa sorry, you right, some questions have image, post only answer description, if somebody wants comments, look at the dump.thx

  • Oct 03, 2012
  • Vanessa
  • Germany
  • Oct 03, 2012

Jose, i have the Visual CertExam Designer, but in the last dump the code cannot be copied and pasted. I try this. This dump Microsoft.BrainDump.70-511.v2012-09-30.by.PaulK.85q.vce is not as the others!

  • Oct 03, 2012
  • Vanessa
  • Germany
  • Oct 03, 2012

@Floren the answer of question 13 is already posted:

C) <Label Name="Label1">
<StackPanel Orientation="Horizontal">
<Button Click="Button_Click">
<TextBlock Text="Click!" />
</Button>
</StackPanel>
</Label> -> CORRECT

  • Oct 03, 2012
  • jose
  • Brazil
  • Oct 03, 2012

@Vanessa, open the vce with Visual CertExam Designer, you can copy and paste questions and answers like text

  • Oct 03, 2012
  • Vanessa
  • Germany
  • Oct 03, 2012

Many thanks, Monkey. I have even more questions. I need time to type the code, because this dump have the code embedded as image, so it cannot be used with copy and paste.
Please, please, help.

  • Oct 03, 2012
  • floren
  • Spain
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application. The window has the following markup.
(Line numbers are included for reference only)

01 <Window.Resources>
02 <Style TargetType={"x:TypeListBox}">
03 <Setter Property="ItemPage1">
04 <Setter.Value>
05 <ItemsPanelTemplate>
06 <StackPanel orientation="Horizontal"
07 VerticalAligment="Center"
08 HorizaontalAligment="Center"/>
09 </ItemsPanelTemplate>
10 </Setter.Value>
11 </Setter>
12 <Setter Property="Template">
13 <Setter.value>
14 <ControlTemplatetargetType="{x:TypeListBox}">
15
16 </ControlTemplate>
17 </Setter.Value>
18 </Setter>
19 </Window.Resources>

You need to ensure that all ListBox controls have a border that matches the background color of the ListBoxtemplate.

Which markup segment should you insert at line 15?

A) <Border Background="{BindingListBox.BackGround}">
<ItemsPresenter />
</Border>

B) <Border Background="{TemplateBindingListBox.BackGround}">
<ContentPresenter />
</Border>

C) <Border Background="{BindingListBox.BackGround}">
<ContentPresenter />
</Border>

D) <Border Background="{TemplateBindingListBox.BackGround}">
<ItemsPresenter />
</Border>


ANSWER: B

Is the answer correct?

  • Oct 03, 2012
  • floren
  • Spain
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application.
Two styles, Blue and green, are used for Borderobjects. The two styles have the same values for the
CornerRadiusand BrushThicknessproperties and different values for the Backgroundproperty.

You need to define the CornerRadiusand BrushThicknesssettings in either the Blue or the Green style, but not both.
What should you do?

A) Separate Blue and Green into two files.Put the base settings in Blue and use MergedDictionaries. Ensure that the Blue file is second in the list.

B) Put Blue and Green into the same file.Put the base setting in Blue and mark Blue as BasedOn Green.

C) Put Blue and Green into the same file.Put the base setting in Blue and mark Green as BasedOn Blue.

D) Separate Blue and Green into two files.Put the base settings in blue and use MergedDictionaries. Ensure that the Green file is second in the list.


ANSWER: C

Is the answer correct?

  • Oct 03, 2012
  • floren
  • Spain
  • Oct 03, 2012

You need to identify the XAML markup for the Label control that caused the issue.
Which markup segment corresponds to the Label control?


A) <Label Name="Label1">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Click!" />
<Button Content="Click!" Click="Button_Click" />
</StackPanel>
</Label>


B) <Label Name="Label1">
<Button Click="Button_Click">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Click!" />
<Button Content="Click!" Click="Button_Click" />
</StackPanel>
</Button>
</Label>

C) <Label Name="Label1">
<StackPanel Orientation="Horizontal">
<Button Click="Button_Click">
<TextBlock Text="Click!" />
</Button>
</StackPanel>
</Label>

D) <Label Name="Label1">
<Button Click="Button_Click">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Click!" />
</StackPanel>
</Button>
</Label>


Please, can anybody help?

  • Oct 03, 2012
  • Monkey
  • Switzerland
  • Oct 03, 2012

Vanessa I agree with both questions.

  • Oct 03, 2012
  • Vanessa
  • Germany
  • Oct 03, 2012

11. Question
You are developing a Windows Presentation Foundation (WPF) application.

The application has an Image control.

You need to ensure that a portion of the image displays in a circle in the control.

What are two possible ways to achieve this goal? (Each correct answer presents a complete solution. Choose two.)
A. Add an Ellipse element to the control. Use Ellipse.Stroke and ImageBrush with the image as ImageSource.
B. Add an Image.Clip element to the control. Use LineGeometry within Image.Clip.
C. Add an Ellipse element to the control. Use Ellipse.Fill and ImageBrush with the image as ImageSource. -> CORRECT???
D. Add an Image.Clip element to the control. Use EllipseGeometry within Image.Clip. -> CORRECT???

I thing both C and D are correct.

Please, please help!!!

  • Oct 03, 2012
  • Vanessa
  • Germany
  • Oct 03, 2012

AB-C#
You are developing a Windows Presentation Foundation (WPF) application.

This application will be deployed to 20 countries. However, it will only be localized to some of those countries' regional dialects.

The localization will be performed by using resource files. However, no culture will be specified in the project file with the UlCulture tags.

You must ensure that the application defaults to English for those regions that are not localized.

What should you do?
A. Add the following code segment to the AssemblyInfo file.
[assembly: NeutralResourcesLanguage("en-US",
UltimateResourceFallfcaclcLocation.Satellite) ] -> OK
B. Add the following code segment to the Application constructor.
Thread.CurrentThread.CurrentUICulture=
new CultureInfo("en-US");
C.Add the following code segment to the AssemblyInfo file.
[assembly: NeutralResourcesLanguage("en-OS",
DltimateResourceFallbackLocation.MainAssembly) ]
D. Add the following code segment to the Application constructor.
Thread.CurrentThread.CurrentCulture =
new CultureInfo("en-US");

Please, can anybody help?

  • Oct 03, 2012
  • jose
  • Brazil
  • Oct 03, 2012

guys, very good, we need try to answer, everybody have an opnion. lets show here and get the best.today i post more.examcol. max 5 posts by day

  • Oct 03, 2012
  • micky
  • Spain
  • Oct 03, 2012

You develop a Windows Presentation Foundation (WPF) application. You will use ClickOnce to publish it to a Web server.

You add a Button control to the Windows Form with the following code segment. (Line numbers are included for reference only.)
..

You need to ensure that the update performs as designed.

Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

Correct:

Insert the following code at line 06.
info = updateCode.CheckForDetailedUpdate();

Insert the following code at line 09.
updateCode.Update();

  • Oct 03, 2012
  • micky
  • Spain
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application.

An element binding consistently throws errors because the data retrieval is slow.

You need to ensure that the PresentationTraceSource binding is configured to debug the source of these errors.

Which two actions should you perform? (Each correct answer presents part of the solution. Choose two).

Add the following markup segment to the window definition.
xmlns:diagnostics="clr-namespace:System.Diagnostics;assembly=WindowsBase"

Add the following markup segment to the problem element.
"diagnostics: PresentationTraceSources.TraceLevel=High"

  • Oct 03, 2012
  • micky
  • Spain
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application. A TextBlock control has DataContext bound to a static resource named Book. The ToolTip attribute of TextBlock displays the full book titles.

You create a converter named TrimTitleConverter to shorten the book titles to three words in the Text attribute of the TextBox. You add the converter to the Resources section of the MainWindow.xaml file as follows. (Line numbers are included for reference only.)

..

You need to ensure that the shortened book titles appear only in the Text attribute of TextBlock.

Which markup segment should you use to replace lines 06 through 09?

¿ Correct ?

<TextBlock
ToolTip="{Binding Title}"
Text={Binding RelativeSource={RelativeSource Self}, Path=ToolTip,Converter={StaticResource ResourceKey=TrimConverter}}"
DataContext="{StaticResource ResourceKey=Book"/>

  • Oct 03, 2012
  • micky
  • Spain
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application. You are writing data templates for a calendar.

You must use the Weekend template for weekends and the Weekday template for weekdays. The Window markup is as follows. (Line numbers are included for reference only.)

..

You need to ensure that the Weekend and Weekday templates are applied correctly to the ListBox control.

Which markup segment should you insert at line 11?

Correct:

<ListBox
ItemTemplateSeIector="{StaticResource WeekendSelector} "/>

  • Oct 03, 2012
  • PK
  • Germany
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application.

The application uses drag-and-drop functionality.

You need to ensure that code is executed in the code-behind file when the dragged item is released onto the target element.

Which enumeration should you use?
A. DragDropEffects.None
B. DragAction.Cancel
C. DragDropEffects.AII
D. DragAction.Drop --> CORRECT

You are developing a Windows Presentation Foundation (WPF) application. You add several TextBox controls within a StackPanel control. You next add several Image controls within a second StackPanel control.

During testing, you discover that some of the textboxes do not appear in the proper layout.

You need to quickly search for the textboxes and view their properties to identify which ones are incorrect.

What should you do?

WPF visualizer is the correct answer

all answer of Jose after my post is correct

  • Oct 03, 2012
  • Monkey
  • Switzerland
  • Oct 03, 2012

So, i chnaged my opinion:

You are developing a Windows Presentation Foundation (WPF) application.

The application uses drag-and-drop functionality.

You need to ensure that code is executed in the code-behind file when the dragged item is released onto the target element.

Which enumeration should you use?
A. DragDropEffects.None
B. DragAction.Cancel
C. DragDropEffects.AII -> CORRECT
D. DragAction.Drop

=================================

You are developing a Windows Presentation Foundation (WPF) application. The application uses a DockPanel control with its HorizontalAlignment property set to Left to divide the main window into three distinct columns. Each column is a panel that is responsible for the layout of its own controls.

You need to reverse the order of the columns.

What should you do?


A Set the HorizontalAlignment property to Right on the DockPanel.
B Set the LayoutTransform property to Identity on the DockPanel.
C Set the DockPanel.Dock property to Right on each of the panels.
D Set the FlowDirection property to RightToLeft on each of the panels. CORRECT

C and D are working, but D is less Code, so this should be correct

  • Oct 03, 2012
  • Monkey
  • Switzerland
  • Oct 03, 2012

Andy from Germany - Oct 02 2012, 11:56 PM Report Spam
You are developing a Windows Presentation Foundation (WPF) application.

The application uses drag-and-drop functionality.

You need to ensure that code is executed in the code-behind file when the dragged item is released onto the target element.

Which enumeration should you use?
A. DragDropEffects.None
B. DragAction.Cancel
C. DragDropEffects.AII -> OK ??
D. DragAction.Drop

Is the answer correct? Please, let me know.

============================

Why couldnt it be D? You have to react if the dragged item is released (dropped). So you have to use the DragAction.Drop-Enumeration. Is this right?

  • Oct 03, 2012
  • Monkey
  • Switzerland
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application. The application uses a DockPanel control with its HorizontalAlignment property set to Left to divide the main window into three distinct columns. Each column is a panel that is responsible for the layout of its own controls.

You need to reverse the order of the columns.

What should you do?

D (Set the FlowDirection property to RightToLeft on each of the panels.)

============

Are you sure? Question was to recerse the order of the columns, not of the panels in the columns.

Couldnt it be "B: set the DockPanel.Dock property to Right on each of the panels." --> so the first column is docked right, the seconds too and so on. The the order of the columns would be reversed. Am I wrong?

  • Oct 03, 2012
  • jose
  • Brazil
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application. You add several TextBox controls within a StackPanel control. You next add several Image controls within a second StackPanel control.

During testing, you discover that some of the textboxes do not appear in the proper layout.

You need to quickly search for the textboxes and view their properties to identify which ones are incorrect.

What should you do?

  • Oct 03, 2012
  • jose
  • Brazil
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application. The application uses a DockPanel control with its HorizontalAlignment property set to Left to divide the main window into three distinct columns. Each column is a panel that is responsible for the layout of its own controls.

You need to reverse the order of the columns.

What should you do?

D (Set the FlowDirection property to RightToLeft on each of the panels.)

  • Oct 03, 2012
  • jose
  • Brazil
  • Oct 03, 2012

You are developing a Windows Presentation Foundation (WPF) application page.

The controls on the page must be enclosed within a single rectangular border. The border must contain an image in the header.

You need to select a control to use as a container.

Which control should you select?

D (GroupBox)

  • Oct 03, 2012
  • jose
  • Brazil
  • Oct 03, 2012

The window must display the OrderDate value found in shippedOrder. The text box must display the OrderDate formatted by the DateOutputConverter.

You need to ensure that the OrderDate is displayed and formatted correctly.

Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

A (Insert the following code at line 07.
<m:DateCutputConverter x:Key="DateOutputConverter"/>)

B (Insert the following code at line 10.
<TextBox text="'Binding OrderDate,
Converter= {StaticRescurce interationalDateConverter)}" DataContext="{StaticResource ResourceKey=shippedOrder}"/>)

  • Oct 03, 2012
  • jose
  • Brazil
  • Oct 03, 2012

You bind to the IstService control a static resource named ServiceCases.

You need to ensure that the service cases are grouped by category.

What should you do in the MainWindow.xaml file?

D (Add the following markup segment to CollectionViewSource.
<CollectionViewSource.GroupDescriptions>
<dat:PropertyGroupDescription PropertyName="Category </CollecctionViewSource.GroupDescription">)

  • Oct 03, 2012
  • Andy
  • Germany
  • Oct 02, 2012

You are developing a Windows Presentation Foundation (WPF) application.

The application uses drag-and-drop functionality.

You need to ensure that code is executed in the code-behind file when the dragged item is released onto the target element.

Which enumeration should you use?
A. DragDropEffects.None
B. DragAction.Cancel
C. DragDropEffects.AII -> OK ??
D. DragAction.Drop

Is the answer correct? Please, let me know.

  • Oct 02, 2012
  • cybergabry
  • Italy
  • Oct 02, 2012

Excuse me. Of course I appreciate your contribution but the .vce file above does not display any question and answer. Can you fix it please? Thank you.

  • Oct 02, 2012
  • PK
  • Germany
  • Oct 02, 2012

regarding the not answer question, my answers are

A) <Listbox.Resources>
<XmlDataProvider x:Key="FeedData"
Source="EmployeeData.xml" XPath="/Employees"/>
</Listbox.Resources>

C) UIElement

Ok for all oter questions.

  • Oct 02, 2012
  • floren
  • Spain
  • Oct 02, 2012

You are developing a Windows Presentation Foundation (WPF) application.
The movement of a control within the application is animated.

You need to ensure that the animated control is continually animated in one direction.

What should you specify for the easing function of the animations?

A) BackEase

B) SineEase

C) ElasticEase

D) BounceEase

ANSWER: I think it's the "B"

  • Oct 02, 2012
  • floren
  • Spain
  • Oct 02, 2012

You are developing a Windows Presentation Foundation (WPF) application.
You pull employee information from an XML file named EmplyeeData.xml. The XML file is as follows.

<Employees>
<Employee Name="Bob" DateOfBirth="1990"
Level="Accountant" Department="Accounting"/>
<Employee Name="Amy" DateOfBirth="1987"
Level="Accountant" Department="Accounting" />
<Employee Name="Dan" DateOfBirth="1978"
Level="Manager" Department="Accounting"/>
<Employee Name="Joanna" DateOfBirth="1970"
Level="Controller" Department="Accounting"/>
</Employees>

The ListBox control you are using is declared as follows.
<ListBox x:Name="EmployeeList"
ItemsSource="{Binding Source={SataticResourceFeedData},XPath=Employee}">
</ListBox>

You need to display all the employee information from the XML file in EmployeeList.
Which markup segment should you use?

A) <Listbox.Resources>
<XmlDataProvider x:Key="FeedData"
Source="EmployeeData.xml" XPath="/Employees"/>
</Listbox.Resources>

B) <Window.Resources>
<XmlDataProvider x:Key="FeedData"
Source="EmployeeData.xml" XPath="/Employees/Employee"/>
</Window.Resources>

C) <Window.Resources>
<XmlDataProvider x:Key="FeedData"
Source="EmployeeData.xml" XPath="/Employees"/>
</Window.Resources>

D) <Listbox.Resources>
<XmlDataProvider x:Key="FeedData"
Source="EmployeeData.xml" XPath="/Employees/Employee"/>
</Listbox.Resources>


ANSWER: ?

-----------------------------------------------------
I doubt both questions, what are the right answers?

  • Oct 02, 2012
  • floren
  • Spain
  • Oct 02, 2012

You are developing a Windows Presentation Foundation (WPF) application.

The application has several visual controls on a main page.

You need to restyle all of the UI-related elements on the main page at run time.

Which class should you use to reference all these elements in a single call?

A) VisualTreeHelper
B) LogicalTreeHelper
C) UIElement
D) ContentElement

ANSWER: ?

  • Oct 02, 2012
  • Tomdorious
  • United Kingdom
  • Oct 02, 2012

AB-C#
You are developing a Windows Presentation Foundation (WPF) application.

There is an issue in the display of Label. When you open the WPF Visualizer, you see the following information in the left-hand panel of the Visualizer.
You need to identify the XAML markup for the Label control that caused the issue.
Which markup segment corresponds to the Label control?

A:)<Label Name="Label1">
Button Click="Button_Click">
<StackPanel Orientation="Horizontal">
<TextB1ock Text="Click1= />
</StackPanel>
</Button>
</Label>

B:)<Label Name="Label1">
<StackPanel Orientation="Horizontal">
<Button Click="Button_Click">
<TextBIock Text="Click2" />
</Button>
</StackPanel>
</Label>

C:)<Label Name="Label1">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Click!" />
<Button Content-"Click!" Click-"Button_Click" /> </StackPanel>
</LabeI>

D:)<Label Name="Label1/>
<Button Click="Button_Click">
<StackPanel Orientation=Horizontal">
<TextB1ock Text="Click! " />
<Button Content="Click"Button_Click" />
</StackPanel>
</Button>
</Label>

ANSWER: C

  • Oct 02, 2012
  • Tomdorious
  • United Kingdom
  • Oct 02, 2012

AB-C#
You are deploying a Windows Forms application. You use the Publishing wizard within Visual Studio to configure ClickOnce options.

You need to ensure that a custom zone is created with specific permissions within the security tab of Visual Studio.

What should you do?

A:)Disable the ClickOnce security settings. Then edit the deployment.application file.
B:)Enable the ClickOnce security settings. Choose the "This is a Partial Trust Application" radio button. Then edit the app.manifest file.
C:)Enable the ClickOnce security settings. Then edit the deployment.application file.
D:)Enable the ClickOnce security settings. Choose the "This is a Full Trust Application" radio button. Then edit the app.manifest file.

ANSWER: B

  • Oct 02, 2012
  • Tomdorious
  • United Kingdom
  • Oct 02, 2012

You are developing a Windows Presentation Foundation (WPF) application. You are implementing a test strategy for the application.

You need to ensure that the history of your testing session can be rewound in the execution cycle so that the state of the application and events that occurred previously can be viewed.

What should you use?

Visual Studio Debugger BreakPoints
Coded UI Tests
ANSWER: IntelliTrace
Error Dump File

  • Oct 02, 2012
  • guldan
  • Netherlands
  • Oct 02, 2012

You can change the examen with the visual cert exam designer. You can load the VCE in them.

  • Oct 02, 2012
  • micky
  • Spain
  • Oct 01, 2012

I took the exam the last week and at least fifteen question appear on the test. Good job Monkey !!!!

  • Oct 01, 2012
  • jose
  • Brazil
  • Oct 01, 2012

Q: AB-C#
You are creating a Windows Presentation Foundation (WPF) application.

A control periodically appears to alert the user of status changes within the application.

You need to specify that each time the control appears, it fades out within half a second.

Which markup segment should you add to the Storyboard element of the control?

correct answer: C (<DoubleAnimation Storyboard.TargetProperty="Opacity" From"l" To="0" Duration"0:0:.5" />)

  • Oct 01, 2012
  • jose
  • Brazil
  • Oct 01, 2012

Q: AB-C#
You develop a Windows Presentation Foundation (WPF) application. The application runs on 64-bit machines only.

The application architects want to store application settings in the registry. The users do not have write access to these settings. These application settings apply to everyone using the application.

You need to read the application settings successfully from the registry.

Which code segment should you use?

correct answer: C (RegiatryKey
·OpenBaseKey(RegistryHive.LocalMachine.
RegistryView.Registry64)
·CreateSubKey(@"SoftwareMyProgram")
·GetValue("ConnectionString") ;)

  • Oct 01, 2012
  • jose
  • Brazil
  • Oct 01, 2012

Q: AB-C#
You are deploying a Windows Forms application. You use the Publishing wizard within Visual Studio to configure ClickOnce options.

You need to ensure that a custom zone is created with specific permissions within the security tab of Visual Studio.

What should you do?

Correct answer: B (Enable the ClickOnce security settings. Choose the "This is a Partial Trust Application" radio button. Then edit the app.manifest file.)

  • Oct 01, 2012
  • jose
  • Brazil
  • Oct 01, 2012

Q: You are developing a Windows Presentation Foundation (WPF) application for managing student information. You place a Button control named btnSort and a DataGrid control named dgStudents on the design surface of the MainWindow.xaml file. You create a Student class with two properties: FirstName and LastName. You create the following code segment in the constructor of the main window.

Correct answer: A (IEnumerable<Student> sortedStudents =
Students.OrderBy(s => s.LastName).ToList();
dgStudents.ItemsSource = sortedStudents;)

  • Oct 01, 2012
  • jose
  • Brazil
  • Oct 01, 2012

for answer, post description of question's too

  • Oct 01, 2012
  • Monkey
  • Switzerland
  • Oct 01, 2012

F***. u are right. So this is useless.:(

  • Oct 01, 2012
  • Menganito
  • Spain
  • Oct 01, 2012

@Monkey, thanks, but the order of Questions and Answers change every time you start new exam.

  • Oct 01, 2012
  • Monkey
  • Switzerland
  • Oct 01, 2012

This is what i would answer in my first try and just took a short view on it. Did not get really into it though. (But we have something to improve;) )

1
2
3 C
4 B
5 A
6
7
8 D
9
10 B
11
12
13
14
15 A
16
17
18 A
19
20
21
22
23
24 D
25 A
26
27
28
29 A
30
31
32 B,C
33
34
35
36
37 D
38
39 A
40 D
41
42 D
43 A
44 B
45 B
46
47 D
48
49
50 A
51 B
52 A
53
54
55 D
56
57 A
58 B
59 C
60
61 A
62 A
63 A
64
65
66
67 D
68
69 A
70
71
72
73 C
74 C
75
76
77
78
79 D
80
81
82 B
83 B
84

THESE ANSWERS ARE JUST MY FIRST SHOT. SURELY NOT 100% CORRECT. THE ONES I LEFT BLANK I GOT NO IDEA. ALL OTHERS ARE UNSURE.

  • Oct 01, 2012
  • Monkey
  • Switzerland
  • Oct 01, 2012

The dump and its answers are not formetted correctly. Could you please fix that? sometimes only 2 answers are selectable but the other two are in text, sometimes you should select multiple answers and you can only select 1 etc.
Can u fix that?

  • Oct 01, 2012
  • jose
  • Brazil
  • Oct 01, 2012

nice man.guys.let's answer

  • Oct 01, 2012

Add Comments

Only Registered Members Can Download VCE Files or View Training Courses

Please fill out your email address below in order to Download VCE files or view Training Courses. Registration is Free and Easy - you simply need to provide an email address.

  • Trusted By 1.2M IT Certification Candidates Every Month
  • VCE Files Simulate Real Exam Environment
  • Instant Download After Registration.
Please provide a correct e-mail address
A confirmation link will be sent to this email address to verify your login.
Already Member? Click Here to Login

Log into your ExamCollection Account

Please Log In to download VCE file or view Training Course

Please provide a correct E-mail address

Please provide your Password (min. 6 characters)

Only registered Examcollection.com members can download vce files or view training courses.

Registration is free and easy - just provide your E-mail address. Click Here to Register

SPECIAL OFFER: GET 10% OFF

ExamCollection Premium

ExamCollection Premium Files

Pass your Exam with ExamCollection's PREMIUM files!

  • ExamCollection Certified Safe Files
  • Guaranteed to have ACTUAL Exam Questions
  • Up-to-Date Exam Study Material - Verified by Experts
  • Instant Downloads
Enter Your Email Address to Receive Your 10% Off Discount Code
A Confirmation Link will be sent to this email address to verify your login
We value your privacy. We will not rent or sell your email address

SPECIAL OFFER: GET 10% OFF

Use Discount Code:

MIN10OFF

A confirmation link was sent to your e-mail.
Please check your mailbox for a message from support@examcollection.com and follow the directions.

Next

Download Free Demo of VCE Exam Simulator

Experience Avanset VCE Exam Simulator for yourself.

Simply submit your e-mail address below to get started with our interactive software demo of your free trial.

Free Demo Limits: In the demo version you will be able to access only first 5 questions from exam.