Friday, July 14, 2006

Do you want to become a MCSD,,,,, well i will give you the rigth formula. This website provides you really useful example for your MCSD tests.... Here you are the best example for passing your tests 70-305 and 70-315.
MCSD - 70-305 / 70-315 Q1)
Nancy works for a company called The Ecommerce Solution. She is developing an application called MyApplication.She wants to call a Web services from MyApplication. This web services will returns a Dataset object,named MyDataset, MyDataset containts a list of products. How can Nancy make the services available for MyApplication?
1) The Web Services Discovery (Disco.exe) tool.
2) The web references dialog box.
3) The type library importer (Tlbimp.exe) tool.
4) The Service Reference dialog box.
5) The reference dialog box.
MCSD - 70-305 / 70-315 Q2)
Peter works as a software engineer for The Ecommerce Solution. He is developing an application MyApplicationwhich display employee details from a SQL Server database and using a Datagrid control named MyDatagrid. MyDatagrid is bound to a dataview object named MyDataview. MyApplication has a button "Status". Whenever user click this button, Peter wants to display the details ofemployees with status "Active" in MyDataGrid. Which of the following statements will Peter use to accomplish it?

1)MyDataView1.RowStateFilter = "Status = 'Active'"
2)MyDataView1.RowSelectFilter = "Status = Active"#
3)MyDataView1.RowFilter = "Status = 'Active'"
4)MyDataView1.RowFilter = "Status = Active"
5)MyDataView1.RowStateFilter = "Status = Active"
MCSD - 70-305 / 70-315 Q3)
Peter wants to get list of users who not bougth and product to his company so far. Which of the following SQL syntax will you use for this query?

1) Select u.Username from User u Rigth Outer Join Purchase_Orders on u.UserID = Purchase_Orders.UserID WHere (((Purchase_Orders.Orer_ID) Is Null));
2) Select u.Username from User u Rigth inner Join Purchase_Orders on u.UserID = Purchase_Orders.UserID;
3) Select u.Username from User u Left Outer Join Purchase_Orders on u.UserID = Purchase_Orders.UserID WHere (((Purchase_Orders.Orer_ID) Is Null));
4) Select u.Username from User u Rigth Outer Join Purchase_Orders on u.UserID = Purchase_Orders.UserID;
5) Select u.Username from User u Rigth Outer Join Purchase_Orders on u.UserID = Purchase_Orders.UserID;
MCSD - 70-305 / 70-315 Q4)
Ian is the web developer of The Ecommerce Solution. His company wants to enter in the the Spanish market, so he decides to make an application in bothEnglish and Spanish. For this purpose he creates 2 version of the application.He creates separate resource files for each version, Ian wants to depoy the appropiate resource file based on the current language of the server. What do Ian need to do?
1)A custom action
2)A launch condiction
3)A custom condiction
4)The MsiConfigureProduct function
5)The Installer.Context property
MCSD - 70-305 / 70-315 Q5)
The ecommerce solution is making a small application to apdate the birth of date oftheir users, for this purpose, they make a web page with the user details. In order to validat thedate of brith they are using a CustomValidator control named MyCV which is validating a TextBox controlnamed txtDateOfBirth. The wantto ensure that the users are older than 18, and they do not want to make a tripto the server for validation. Which of the following properties should they use?

1)txtDateOfBirth.AutoPostBack
2)txtDateOfBirth.ClientValidationFunction
3)txtDateOfBirth.Click()
4)MyCV.PostBack
5)MyCV.ClientValidationFunction
MCSD - 70-305 / 70-315 Q6)
Peter want to retrieve HTML help for a specific control. For this purpose he is going touse a HelProvider control. Which of the methods specifies the keywords use to getthe help?
1)GetHTMLHelp
2)ToString
3)ToHelp
4)SetHelpKeyword
5)SetHelpString
MCSD - 70-305 / 70-315 Q7)
Ian is working as web developer for The ecommerce Solution, he is developing an applicationfor an important client. He needs to set security for handlying users, for tihs purpose, he is usingthe security classes of the.NET Framework. Ian wants to give the same permision tothe Manager of Company (Peter) and the Supervisor(Duncan). Which of the following code should he use?
1) Dim permission1 As New PrincipalPermission("Peter","Manager")Dim permission2 As New PrincipalPermission("Duncan","Manager")
permission1 Union permission2
2)Dim permission1 As New PrincipalPermission("Peter","Manager")Dim permission2 As New PrincipalPermission("Duncan","Manager")
permission1 = permission2
3)Dim permission1 As New PrincipalPermission("Peter","Manager")Dim permission2 As New PrincipalPermission("Duncan","Manager")
permission1 Intersect permission2
4) Dim permission1 As New PrincipalPermission("Peter","Manager")Dim permission2 As New PrincipalPermission("Duncan","Manager")
permission1 IsUnrestricted permission2
5)Dim permission1 As New PrincipalPermission("Peter","Manager")Dim permission2 As New PrincipalPermission("Duncan","Manager")
permission1 IsSubSetOf permission2
MCSD - 70-305 / 70-315 Q8)
Ian is testing one of his ASP.net application. He got a button for calculatingthe monthly invoices. He decides to put a breakpoint inthe load page and each time he debugs his application, it stops twice. He wants the application to stop only once. Ian wants to change one of the attributes of the Page Directive, which of the following actionhe has to do.
1) SmartNavigation = "false"
2) SmartNavigation = "true"
3) AutoEventWireup = "true"
4) AutoEventWireup = "false"
5) Codebehind="WebForm1.aspx.vb"
MCSD - 70-305 / 70-315 Q9)
Carols is developing a new application for The Ecommerce Solution.They need to integrate their database with one of their provider database.Carol wants to create a realtionship between these 2 databases. Which ADO.net objectsshould Carol use?

1)Dataset and DataRelation
2)Dataset and DataReader
3)Dataview and DataRelation
4)DataView and DataReader
5)Dataset amd Merge
MCSD - 70-305 / 70-315 Q10)
The ecommerce Solution is located in England, most of their client are located in England too.They got a new client in United Stated and they optimise its main application for this company.However, when they are testing the application the got some problems with the data format anddate validation. Which of the following sections should they change in the web.config file?
1)
2)
3)
4)
5)
Answer:
MCSD - 70-305 / 70-315 A1)
2
MCSD - 70-305 / 70-315 A2)
3
MCSD - 70-305 / 70-315 A3)
3
MCSD - 70-305 / 70-315 A4)
1
MCSD - 70-305 / 70-315 A5)
1 and 5
MCSD - 70-305 / 70-315 A6)
4
MCSD - 70-305 / 70-315 A7)
5
MCSD - 70-305 / 70-315 A8)
4
MCSD - 70-305 / 70-315 A9)
1
MCSD - 70-305 / 70-315 A10)
5

1 comments:

Anonymous said...

it is a good attempt to explain thing with example if i am not wrong i thing we got same sort of question in MCAD exam as well thank mate for this effort to expalin this exam in detail