Get 100% Real Exam Questions, Accurate & Verified Answers By IT Experts
Fast Updates & Instant Download!
Download Free 70-505 Exam Questions
Exam | 70-505 - TS: Microsoft .NET Framework 3.5, Windows Forms Application Development |
Size: | 231.03 KB |
Posted Date: | Monday, October 17, 2011 |
# of downloads: | 3 |
Free Download: | This file is outdated. Browse other 70-505 VCE Files |
Top Microsoft Certification Exams
Site Search:
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.
Log into your ExamCollection Account
Please Log In to download VCE file or view Training Course
Only registered Examcollection.com members can download vce files or view training courses.
SPECIAL OFFER: GET 10% OFF
Pass your Exam with ExamCollection's PREMIUM files!
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.
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.
Hi Jo,
Do you know questions from GFX wich are not in this dump ?
Thank you for any help you can provide.
hi jo ,can u pls paste the ans for questions from GFX pdf. i am unable to find ans for all questions. its very urgent for me . going to give exam on 15 dec. it will be a gr8 help. thax in advance.
Between my post where a post of a member called GFX with original (!!!) screenshots of his 505 Test. But now its deleted ?!? Mabey copyright probs !
Hi Joe
What exactly do you mean be "GFX ist EXCELLENT"
Is it uploaded on examcollection website If yes then please tell me where exactly it is uploaded.
Waiting for reply.
Thanks in advance.
Passed with 860/1000. This VCE is good for 66%. Some of the Drag+Drop Questions here where in the test. But the new Dump from GFX ist EXCELLENT. Hope someone can transfer it into a new vce file !!!!!!!
Find all the Answer to the Drag and drop Questions in the msdn (copy snippets to google ;-)) in VB too, exept then following. I find the page http://msdn.microsoft.com/en-us/library/33w255ac%28v=VS.90%29.aspx and maybe the Answer are only "Drag a DataGridView." and "Choose the DataTable class.". Any Idea ?
You are developing a .NET Framework 3.5 windows forms application. The application uses a DataSet class data. The DataSet class defines a single DataTable class. The DataTable class defines several data columns.
A form un the application will display data by using the DataSet class.
You need to ensure that the form displays data form a subset of the data columns.
Which actions should you perform in sequence=
To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
Actions:
• Add the columns you want to display
• Remove the columns you do not want to display
• Set the properties of the bindingSource object.
• Drag a DataSet object from the toolbox to the form.
• Drag a DataGridView object from the toolbox to the form.
• Drag a BindingSource object from the toolbox to the form.
• Drag a TableLayoutPanel object from the toolbox to the form.
• Choose the DataTable class of the DataSet class as the data source
Thanks Emir.
Can any one help with the answers of these new questions?
Thanks a ton in advance
Hi Michal,
The megaupload website is not functioning due to the DNS issues in the past few days. Could you please give another website in which we can download the dump.
Thanks a ton in advamce
http://www.megaupload.com/?d=E4IE0F0G
• AccessibleAction
• AccessibleDefaultActionDescription
• AccessibleDescription
• AccessibleName
• AccessibilityObject
• AccessibleRole
• Action
Answer area
------------------------------ Default Action Is Submit
------------------------------ MyButtom
------------------------------ Default
answer is :
AccessibleDescription - Default Action Is Submit
AccessibleName - MyButton
AccessibleRole - Default
Answer choice
• AppSettingsReader
• ApplicationSettingsBase
• ConfigurationConverterBase
• ProtectedConfigurationProvider
• SettingsBase
Then answer is : ApplicationsetingBase
@Rahul/Ven/Kroma :Any clue on the drag and drop questions? There were 10+ questions were from that arena.
Post More Questions if possible !!
AccessibleRole--- Default
Hi Ven
Thanks for the correct question !!
Public partial class AppForm : Form
{
Public AppForm()
{
initializeComponent();
backgroundworker1.workerReportsProgress = true;
backgroundWorker1.-------------------- = false;
}
Private void StartImageUploadButton_Click(Object sender, EventArgs e)
{
If (backgroundWorker1.IsBusy != true)
{
backgroundWorker1.------------------------------- ;
}
}
}
1) The answer should be WorkerSupportsCancellation for the first blank.
2) RunWorkerAsync() for the second blank.
Please update any more questions you remember.
You are developing a .NET Framework 3.5 windows forms application. A form in the application includes a Buttom control named myButtom. Accessibility clients and aides (such as screen readers) will interact with the form.
You need to set the name and role of the buttom. You also need to ensure that accessibility clients can identify the default buttom action.
Which properties should you set?
To answer, drag the appropriate property or properties to the correct locations in the answer area.
Answer choices
• AccessibleAction
• AccessibleDefaultActionDescription
• AccessibleDescription
• AccessibleName
• AccessibilityObject
• AccessibleRole
• Action
Answer area
------------------------------ Default Action Is Submit
------------------------------ MyButtom
------------------------------ Default
this is wrong question
======================
Public partial class AppForm : Form
{
Public AppForm()
{
initializeComponent();
backgroundworker1.workerReportsProgress = true;
backgroundWorker1.-------------------- = true;
}
Private void StartImageUploadButton_Click(Object sender, EventArgs e)
{
If (backgroundWorker1.IsBusy = true)
{
backgroundWorker1.------------------------------- ;
}
}
}
======================
the right question is
======================
Public partial class AppForm : Form
{
Public AppForm()
{
initializeComponent();
backgroundworker1.workerReportsProgress = true;
backgroundWorker1.-------------------- = false;
}
Private void StartImageUploadButton_Click(Object sender, EventArgs e)
{
If (backgroundWorker1.IsBusy != true)
{
backgroundWorker1.------------------------------- ;
}
}
}
You are developing a .NET Framework 3.5 windows forms application. A form in the application includes a Windows Presentation foundation button control.
You need to change the button color to blue when a user points to the button.
How should you complete the code?
To answer, drag the appropriate code segment or segements to the correct location or locations in the work area.
Answer:
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="Blue" />
</Trigger>
</Style.Triggers>
You are developing a .NET Framework 3.5 windows forms application. You use a BackgroundWorker object to upload Microsoft Word documents to a Windows Communication foundation(WCF) Data Services Web service.
You need to ensure that users can continue to work in the application while the BackgroundWorker object's background operation execute. You also need to assure that the BackgroundWorker object cannot be cancelled during the operation.
Which method should you call to allow the BackgroundWorker object to start uploading the files?
To answer, drag the appropriate method to the correct location in the answer area.
Answer area
• Canraiseevents
• CancelAsync()
• Dispose()
• ReportProgress()
• RunWorkerAsync()
• WorkerReportsProgress
• WorkerSupportsCancellation
Answer area
Public partial class AppForm : Form
{
Public AppForm()
{
initializeComponent();
backgroundworker1.workerReportsProgress = true;
backgroundWorker1.WorkerReportsProgress = true;
}
Private void StartImageUploadButton_Click(Object sender, EventArgs e)
{
If (backgroundWorker1.IsBusy = true)
{
backgroundWorker1.RunWorkerAsync() ;
}
}
}
You are developing a .NET Framework 3.5 windows forms application. The application reads data from a Microsoft SQL Server 2008 database. You need to asynchronously execute a SqlCommand and return a result set from the datatable.
What should you do?
To answer, drag the appropriate method to the correct location in the answer area.
Answer Area
Private static void RunCommandAsynchronously, string commandText, string connectionString)
{
Using (SqlConnection Connection = new Connection(ConnectionString))
{
SqlCommand command = new SqlCommand(CommandText, Connection);
Connection.Open();
IAsyncResult result = command.BeginExecuteReader ();
}
}
BeginExecuteReader() - Initiates the asynchronous execution of the SQL statement or stored procedure that is described in the SqlCommand, and retrieves one or more result sets from the server.
BeginExecuteNonQuery() - Initiates the asynchronous execution of the SQL statement or stored procedure that is described in the SqlCommand.
You are developing a .NET Framework 3.5 windows forms application. A form in the application includes a Windows Presentation foundation button control.
You need to change the button color to blue when a user points to the button.
How should you complete the code?
To answer, drag the appropriate code segment or segements to the correct location or locations in the work area.
Answer choices
• <Setter Property="background" Value ="Blue">
• <Setter Property="IsMouseOver" Value="True">
• </Setter>
• <Style.Triggers>
• <Style Triggers Property="IsMouseOver" Value="True">
• <Style Triggers>
• <Trigger Property="IsMouseOver" Value="True">
• </Trigger>
Answer Area
<Style Key="Triggers" TargetType="Buttom">
_____________________________________________________
_____________________________________________________
_____________________________________________________
_____________________________________________________
_____________________________________________________
_____________________________________________________
<Style>
You are developing a .NET Framework 3.5 windows forms application. You use a BackgroundWorker object to upload Microsoft Word documents to a Windows Communication foundation(WCF) Data Services Web service.
You need to ensure that users can continue to work in the application while the BackgroundWorker object's background operation execute. You also need to assure that the BackgroundWorker object cannot be cancelled during the operation.
Which method should you call to allow the BackgroundWorker object to start uploading the files?
To answer, drag the appropriate method to the correct location in the answer area.
Answer area
• Canraiseevents
• CancelAsync()
• Dispose()
• ReportProgress()
• RunWorkerAsync()
• WorkerReportsProgress
• WorkerSupportsCancellation
Answer area
Public partial class AppForm : Form
{
Public AppForm()
{
initializeComponent();
backgroundworker1.workerReportsProgress = true;
backgroundWorker1.-------------------- = true;
}
Private void StartImageUploadButton_Click(Object sender, EventArgs e)
{
If (backgroundWorker1.IsBusy = true)
{
backgroundWorker1.------------------------------- ;
}
}
}
You are developing a .NET Framework 3.5 windows forms application. The application reads data from a Microsoft SQL Server 2008 database. You need to asynchronously execute a SqlCommand and return a result set from the datatable.
What should you do?
To answer, drag the appropriate method to the correct location in the answer area.
Answer choices
• BeginExecuteReader
• BeginExecuteNonQuery
• ExecuteReader
• ExecuteNonQuery
• ExecuteScalar
• ExecuteDbDataReader
Answer Area
Private static void RunCommandAsynchronously, string commandText, string connectionString)
{
Using (SqlConnection Connection = new Connection(ConnectionString))
{
SqlCommand command = new SqlCommand(CommandText, Connection);
Connection.Open();
IAsyncResult result = command.----------------();
}
}
I think it is better to resolve these quetions first and tomorrow I will post more.
Thanks for posting these questions. :) Post more if you remember. And Anyone who has idea about the answers, Please verify it so that we can pass the test. :)
You are developing a .NET Framework 3.5 windows forms application. The application will create application settings and bind the application setting to properties on a form or on the form's controls.
The application settings must be saved between sessions. You create a class named AppSettings that will create the settings needed for the application.
You need to specify the base class from which the AppSessionSettings class should inherit to allow application settings to persist between sessions.
Which base class should you specify?
To answer, drag the appropriate class to the correct location in the answer area.
Answer choice
• AppSettingsReader
• ApplicationSettingsBase
• ConfigurationConverterBase
• ProtectedConfigurationProvider
• SettingsBase
Answer Area : ApplicationSettingsBase
You are developing a .NET Framework 3.5 windows forms application.
You need to render the form's ToolStrip control to conform to windows Vista themes.
Which render mode should you use?
To answer, select the appropriate setting in the dialog box.
Answer area
• System (Not 100% sure)
You are developing a .NET Framework 3.5 windows forms application.
You need to render the form's ToolStrip control to conform to windows Vista themes.
Which render mode should you use?
To answer, select the appropriate setting in the dialog box.
Answer area
• ManagerRenderMode
• System
• Profesional
You are developing a .NET Framework 3.5 windows forms application
You need to ensure that the application will preview and print documents with smooth fonts regardless of the related operationg system setting.
How should you complete the code segment?
Answer choices:
1) PrintPreviewDialog (Not Sure)
2) UseAntiAlias (100% sure)
You are developing a .NET Framework 3.5 windows forms application. The application uses a DataSet class data. The DataSet class defines a single DataTable class. The DataTable class defines several data columns.
A form un the application will display data by using the DataSet class.
You need to ensure that the form displays data form a subset of the data columns.
Which actions should you perform in sequence=
To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
Actions:
• Add the columns you want to display
• Remove the columns you do not want to display
• Set the properties of the bindingSource object.
• Drag a DataSet object from the toolbox to the form.
• Drag a DataGridView object from the toolbox to the form.
• Drag a BindingSource object from the toolbox to the form.
• Drag a TableLayoutPanel object from the toolbox to the form.
• Choose the DataTable class of the DataSet class as the data source
You are developing a .NET Framework 3.5 windows forms application. The application will create application settings and bind the application setting to properties on a form or on the form's controls.
The application settings must be saved between sessions. You create a class named AppSettings that will create the settings needed for the application.
You need to specify the base class from which the AppSessionSettings class should inherit to allow application settings to persist between sessions.
Which base class should you specify?
To answer, drag the appropriate class to the correct location in the answer area.
Answer choice
• AppSettingsReader
• ApplicationSettingsBase
• ConfigurationConverterBase
• ProtectedConfigurationProvider
• SettingsBase
Answer Area
Using system.Drawing;
Public class AppSessionSettings: -------------
{
[UserScopedSetting()]
[DefaultSettingValue("while")]
Public color BackgroundColor
{
Get
{
Return ((color)this["BackgroundColor"]);
}
Set
{
This["BackgroundColor"]=(Color)value;
}
}
}
You are developing a .NET Framework 3.5 windows forms application.
You need to render the form's ToolStrip control to conform to windows Vista themes.
Which render mode should you use?
To answer, select the appropriate setting in the dialog box.
Answer area
• ManagerRenderMode
• System
• Profesional
You are developing a .NET Framework 3.5 windows forms application
You need to ensure that the application will preview and print documents with smooth fonts regardless of the related operationg system setting.
How should you complete the code segment?
Answer choices:
• AllowDrop
• AutoScroll
• DoubleBuffered
• PrintDialog
• PrintControllerWithStatusDialog
• PrintPreviewDialog
• UseAntiAlias
Answer Area:
Private void InitializeShowDocumentToPrint()
{
This.ShowDocumentToPrint= new --------------------------();
This.ShowDocumentToPrint.ClientSize= new System.Drawing.Size(600,800);
This.ShowDocumentToPrint.Location= new System.Drawing.Point(50,50);
This.ShowDocumentToPrint.MinimumSize= new System.Drawing.Size(480,600);
This.ShowDocumentToPoint.------------------------- = true;
}
Hi kroma,
The answer for the question is
performStep() in the second Pbar1.----------
for the first one
Pbar1.step= 1;
as step initialized to 1 and will indicate each file being copied
Pbar1.Value= 1; is also correct as that will intialize the progressbar
But I think step should be the answer
Post more questions :)
You are developing a .NET Framework 3.5 windows forms application.
You need to use a progressbar control to display progress as image files are copied to a windows communication foundation(WCF) web service.
What should you do?
To answer, drag the appropriate methods or properties to the correct location or locations in the answer area.
Answer choice
• Hide()
• Increment(x)
• MarqueeAnimationSpeed
• MaximumSize
• perfomStep()
• Step
• Value
Answer Area
Private void copywithprogress(string[] filenames)
{
Pbar1.visible=true;
Pbar1.monimum=1;
Pbar1.maximum=filenames.Lenght;
Pbar1.-----------------=1;
For (int c=1; x<=filenames.Lenght;x++)
{
If (CopyFile(filenames[x-1]==true)
{
Pbar1.--------------------- ;
}
}
}
I think the answer should be either B) or C).But after going about each of the tools used I feel the answer should be C) as Certificate Manger Tool is used to add the trust level of the application and will not require elevated permission.
Anyone else please correct me If I am wrong !!
Do you remember any more questions ?
You plan to deploy an application by using the clickonce technology. The application constains a custom control that accesses files on the local file system.
Users of the application do not have administrative rights on the client computers.
You need to ensure that the application executes without requiring elevated permissions.
What should you do?
a) Create a code group and place the custom control in the code group
b) Use the caspol.exe tool along with -addfulltrust option to add the application to the full trust assembly list on the computer that is being used to publish the application.
c) Use certMgr.exe tool install a certificate on the computer that has the application published.
d) Sign the application by using the X.509 certificate.
The dump is no OK, I did the exam last friday and they are 20 new questions, and I have the new questions, I need somebody to resolve the questions
20 out of 50 questions are not from this dump. Luckily got 720/1000 and barely passed it. If you have some experiences on .Net form application, that really helps a lot.
The dumps are not much useful as around 32 questions came from dumps and the rest were from outside. I got 600/1000. Please upload the latest dumps.
I have given this exam on 5th Nov, 25 questions came from dump and 25 from outside dump. failed the exam by 100 marks. 600/1000.
Need to get the dump for drag drop questions outside the dump
Round abount 20 questions came from this Dumps.There where around 15 Drag Drop Questions and few new questions. Just Pass 780/1000
I think wrong answers are included on all the 70-505s. I've passed with 900 today of 50 Q. Acceptible.
I pass with 930. but there are some wrong answers!
There are 2 exams, one VB & the other C#, both have 54 questions.
I passed with this dump.
Add Comments