This page was exported from All The Latest MCTS Exam Questions And Answers For Free Share [ https://www.mctsdump.com ] Export date:Fri Apr 19 0:36:14 2024 / +0000 GMT ___________________________________________________ Title: [Pass Ensure VCE Dumps] PassLeader Free New Update 70-515 Exam Questions Collection (101-120) --------------------------------------------------- Being worried about passing your 70-515 exam? Why not trying PassLeader's 70-515 VCE or PDF dumps? We PassLeader now are offering the accurate 299q 70-515 exam questions and answers, you can get all the real exam questions from our 70-515 exam dumps. All our 299q 70-515 practice tests are the newest and same with the real test. We ensure that you can pass 70-515 exam easily with our premium 70-515 study guide! Now visit passleader.com to get the valid 70-515 braindumps with free version VCE Player! keywords: 70-515 exam,299q 70-515 exam dumps,299q 70-515 exam questions,70-515 pdf dumps,70-515 practice test,70-515 vce dumps,70-515 study guide,70-515 braindumps,TS: Web Applications Development with Microsoft .NET Framework 4 Exam QUESTION 101You are developing an ASP.NET web page. The page includes the following EntityDataSource control:<asp:EntityDataSource ID="EntityDataSource1" runat="server" ConnectionString="name=AdventureWorksEntities" DefaultContainerName="AdventureWorksEntities" EnableFlattening="False" EntitySetName="Products" />The page must filter the data that is displayed in a grid on a query string parameter named ProductPrefix. The grid must display products whose ProductName starts with the query string value. You need to ensure that the page generates the appropriate database query. What should you do? A.    Add the following element to the EntityDataSource control:<WhereParameters><asp:DynamicQueryStringParameter QueryStringField="ProductPrefix" Name="ProductName" /></WhereParameters>B.    Add the following element to the EntityDataSource control:<WhereParameters><asp:QueryStringParameter QueryStringField="ProductPrefix" Name="ProductName" /></WhereParameters>C.    Add the following element to the EntityDataSource control:<asp:QueryExtender ID="QueryExtender1" runat="server" TargetControlID="EntityDataSource1"><asp:PropertyExpression Name="ProductName" /><asp:DynamicFilterExpression ControlID="ProductPrefix" /></asp:QueryExtender>D.    Add the following element to the EntityDataSource control:<asp:QueryExtender ID="QueryExtender1" runat="server" TargetControlID="EntityDataSource1"><asp:SearchExpression SearchType="StartsWith" DataFields="ProductName"><asp:QueryStringParameter QueryStringField="ProductPrefix" /></asp:SearchExpression></asp:QueryExtender> Answer: D QUESTION 102You are perfoming security testing on an existing asp.net web page. You notice that you are able to issue unauthorised postback requests to the page. You need to prevent unauthorised post back requests. which page directive you use? A.    <%@Page strict = "true" %> B.    <%@Page enableViewStateMac = "true" %> C.    <%@Page EnableEventValidation = "true" %> D.    <%@Page Aspcompact = "true" %> Answer: C QUESTION 103You are developing an ASP.NET web application. The application includes the following Entity Data Model (EDM). You instantiate an ObjectContext for the EDM named context. You need to find the total number of addresses that are associated with customers that have a non-null middle name. Which LINQ to Entities query should you use? A.    var query = context.CustomersWhere(c => c.MiddleName != null)Select(c => c.CustomerAddresses.Count();B.    var query = context.CustomersWhere(c => c.MiddleName != null)SelectMany(c => c.CustomerAddresses.Count();C.    var query = context.AddressesSelectMany(a => a.CustomerAddresses.OfType<Customer>()Where(c => c.MiddleName != null)).Count();D.    var query = context.AddressesGroupBy(a => a.CustomerAddressesWhere(ca => ca.Customer.MiddleName != null)).Count(); Answer: B QUESTION 104The page will be posted to the server after one or more image files are selected for upload. You need to ensure that all unuploaded files are saved to the server within one call to a single event handler. What should you do? A.    Read the HttpRequest.Files property and call the HttpPostedFile.SaveAs method for each file.B.    Read the HttpRequest.inputStream property and call the System.Io.File.WriteLines method for each file.C.    Read the HttpRequest.inputStream property and call the HttpResponse.WriteLine method for each file.D.    Read the HttpRequest.Files property and call the System.Io.File.WriteLines method for each file. Answer: A QUESTION 105You are developing an ASP.NET web application that you will deploy to an Internet Information Services (IIS) 7.0 server. The application will run in Integrated pipeline mode. The application contains a phot gallery of images that are stored in a Microsoft SQL Server database. You need to ensure that the application can retrieve images from the database without blocking IIS worker process threads. What should you do? A.    Create a synchronous HttpHandler that is registered in the <httpHandlers> section in the web.config file.B.    Create an asynchronous HttpHandler that is registered in the <handlers> section under system.webServer in the web.config file.C.    Create a custom HttpModule that is registered in the <httpModules> section in the web.config file.D.    Create an asynchronous HttpHandler that is registered in the <httpHandlers> section in the web.config file. Answer: B QUESTION 106You are adding new capabilities to an ASP.NET web site. The site currently connects to a Microsoft SQL Server database by using the credentials of the CONTOSOAppIdentity account, which has been granted access to only objects within the database. The application requires the following implementation:- Database objects that support ASP.NET roles must be added to the existing database.- The ContosoAppIdentity user must be granted only the minimum privileges that are required to support all features of ASP.NET roles.You need to add the ASP.NET roles support. Which two actions should you perform? (Each correct answer presents part of the complete solution. Choose two.) A.    Use the aspnet_regsql tool.B.    Use the aspnet_regiis tool.C.    Add the CONTOSOAppIdentity user to the asp_Roles_FullAccess database role.D.    Add the CONTOSOAppIdentity user to the db_accessadmin database role. Answer: AC QUESTION 107You are developing an ASP.NET MVC 2 Web application. A page makes an AJAX request and expects a list of company names in the following format.["Adventure Works","Contoso"]You need to write an action method that returns the response in the correct format. Which type should you return from the action method? A.    AjaxHelper B.    XDocument C.    JsonResult D.    DataContractJsonSerializer Answer: C QUESTION 108You are developing an ASP.NET Dynamic Data Web application. Boolean fields must display as Yes or No instead of as a check box. You replace the markup in the default Boolean field template with the following markup:<asp:Label runat="server" ID="label" />You need to implement the code that displays Yes or No. Which method of the FieldTemplateUserControl class should you override in the BooleanField class? A.    OnLoad B.    Construct C.    OnDataBinding D.    SaveControlState Answer: C QUESTION 109You are developing an ASP.NET Web service. The following code segment implements the service. (Line numbers are included for reference only.) 01 [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] 02 public class ProductService : System.Web.Services.WebService 03 { 04 [WebMethod] 05 public Product GetProduct(string name) 06 { 07 08 } 09 10 [WebMethod] 11 public Product GetProduct(int id) 12 { 13 14 } 15 } You need to ensure that both GetProduct methods can be called from a Web client. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.) A.    Remove line 01. B.    Add the static modifier on lines 05 and 11. C.    Add the following attribute before line 10.[SoapDocumentMethod(Action="GetProductById")] D.    Modify the attribute on line 10 as follows.[WebMethod(MessageName="GetProductById")] Answer: AD QUESTION 110You are developing an ASP.NET Web application. Application data is stored in a Microsoft SQL Server 2008 database. You configure a connection string named cnnContoso. The application must cache the data that is returned from the database by using this connection string. You need to ensure that the application checks the database every 10 seconds. What should you do? A.    Add the following configuration to the <system.web> section of the web.config file.<caching> <outputCacheSettings> <outputCacheProfiles> <add name="cnnContoso" duration="10" /> </outputCacheProfiles> </outputCacheSettings> </caching> B.    Add the following configuration to the <system.web> section of the web.config file.<caching> <sqlCacheDependency enabled="true" pollTime="10000"> <databases> <add name="ContosoDatabase" connectionStringName="cnnContoso" /> </databases> </sqlCacheDependency> </caching> C.    Add the following @ Page directive to pages that query the database.<%@ OutputCache Duration="10" VaryByParam="cnnContoso" %> D.    Add the following @ Page directive to pages that query the database.<%@ OutputCache Duration="10000" VaryByParam="cnnContoso" %> Answer: B http://www.passleader.com/70-515.html QUESTION 111You are developing an ASP.NET Web page that contains input controls, validation controls, and a button named btnSubmit. The page has the following code-behind. (Line numbers are included for reference only.) 01 public partial class _Default : System.Web.UI.Page 02 { 03 protected void SaveToDatabase() 04 { 05 06 } 07 08 protected void btnSubmit_Click(object sender, EventArgs e) 09 { 10 11 } 12 } You need to ensure that all data that is submitted passes validation before the data is saved in a database. What should you do? A.    Add the following method override.protected override void OnInit(EventArgs e) { base.OnInit(e); if (Page.IsValid) this.SaveToDatabase(); } B.    Add the following method override.protected override void OnLoad(EventArgs e) { base.OnLoad(e); if (Page.IsValid) this.SaveToDatabase(); }  C.    Add the following method override.protected override void OnPreRender(EventArgs e) { base.OnPreRender(e); if (Page.IsValid) this.SaveToDatabase(); } D.    Add the following code segment at line 10.if (Page.IsValid) this.SaveToDatabase(); Answer: D QUESTION 112You are implementing an ASP.NET application that includes a page named TestPage.aspx. TestPage.aspx uses a master page named TestMaster.master. You add the following code to the TestPage.aspx code-behind file to read a TestMaster.master public property named CityName.Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.LoadDim s As String = Master.CityNameEnd SubYou need to ensure that TestPage.aspx can access the CityName property. What should you do? A.    Add the following directive to TestPage.aspx.<%@ MasterType VirtualPath="~/TestMaster.master" %>B.    Add the following directive to TestPage.aspx.<%@ PreviousPageType VirtualPath="~/TestMaster.master" %>C.    Set the Strict attribute in the @ Master directive of the TestMaster.master page to true.D.    Set the Explicit attribute in the @ Master directive of the TestMaster.master page to true. Answer: A QUESTION 113You are creating an ASP.NET Web site. The site has a master page named Custom.master. The code-behind file for Custom.master contains the following code segment:Partial Public Class Custom Inherits System.Web.UI.MasterPagePublic Property Region As StringProtected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.LoadEnd SubEnd ClassYou create a new ASP.NET page and specify Custom.master as its master page. You add a Label control named lblRegion to the new page. You need to display the value of the master page's Region property in lblRegion. What should you do? A.    Add the following code segment to the Page_Load method of the page code-behind file.Dim custom As Custom = Me.ParentlblRegion.Text = custom.RegionB.    Add the following code segment to the Page_Load method of the page code-behind file.Dim custom As Custom = Me.MasterlblRegion.Text = custom.RegionC.    Add the following code segment to the Page_Load method of the Custom.Master.vb code-behind file.Dim lblRegion As Label = Page.FindControl("lblRegion")lblRegion.Text = Me.RegionD.    Add the following code segment to the Page_Load method of the Custom.Master.vb code-behind file.Dim lblRegion As Label = Master.FindControl("lblRegion")lblRegion.Text = Me.Region Answer: B QUESTION 114You are implementing an ASP.NET Web site. The site allows users to explicitly choose the display language for the site's Web pages. You create a Web page that contains a DropDownList named ddlLanguage, as shown in the following code segment:<asp:DropDownList ID="ddlLanguage" runat="server"AutoPostBack="True" ClientIDMode="Static"OnSelectedIndexChanged="SelectedLanguageChanged"><asp:ListItem Value="en">English</asp:ListItem><asp:ListItem Value="es">Spanish</asp:ListItem><asp:ListItem Value="fr">French</asp:ListItem><asp:ListItem Value="de">German</asp:ListItem></asp:DropDownList>The site contains localized resources for all page content that must be translated into the language that is selected by the user. You need to add code to ensure that the page displays content in the selected language if the user selects a language in the drop-down list. Which code segment should you use? A.    Protected Sub SelectedLanguageChanged(ByVal sender As Object, ByVal e As EventArgs) Handles ddlLanguage.SelectedIndexChanged Page.UICulture = ddlLanguage.SelectedValueEnd SubB.    Protected Overrides Sub InitializeCulture()Page.UICulture = Request.Form("ddlLanguage")End SubC.    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.LoadPage.Culture = Request.Form("ddlLanguage")End SubD.    Protected Overrides Sub InitializeCulture()Page.Culture = ddlLanguage.SelectedValueEnd Sub Answer: B QUESTION 115You are implementing an ASP.NET application that includes the following requirements. Retrieve the number of active bugs from the cache, if the number is present. If the number is not found in the cache, call a method named GetActiveBugs, and save the result under the ActiveBugs cache key. Ensure that cached data expires after 30 seconds. You need to add code to fulfill the requirements. Which code segment should you add? A.    Dim numOfActiveBugs As Integer? = DirectCast(Cache("ActiveBugs"), Integer?)If Not numOfActiveBugs.HasValue ThenDim result As Int32 = GetActiveBugs()Cache.Insert("ActiveBugs", result, Nothing, DateTime.Now.AddSeconds(30), Cache.NoSlidingExpiration)numOfActiveBugs = resultEnd IfActiveBugs = numOfActiveBugs.ValueB.    Dim numOfActiveBugs As Integer = CInt(Cache.Get("ActiveBugs")) If numOfActiveBugs <> 0 ThenDim result As Integer = GetActiveBugs()Cache.Insert("ActiveBugs", result, Nothing, DateTime.Now.AddSeconds(30), Cache.NoSlidingExpiration)numOfActiveBugs = resultEnd IfActiveBugs = numOfActiveBugsC.    Dim numOfActiveBugs As Integer = 0If Cache("ActiveBugs") Is Nothing ThenDim result As Integer = GetActiveBugs()Cache.Add("ActiveBugs", result, Nothing, DateTime.Now.AddSeconds(30),Cache.NoSlidingExpiration,CacheItemPriority.Normal, Nothing)numOfActiveBugs = resultv End IfActiveBugs = numOfActiveBugsD.    Dim numOfActiveBugs As Integer = DirectCast(Cache("ActiveBugs"), Integer?)If Not numOfActiveBugs.HasValue ThenDim result As Integer = GetActiveBugs()Cache.Insert("ActiveBugs", result, Nothing, Cache.NoAbsoluteExpiration, TimeSpan.FromSeconds(30))numOfActiveBugs = resultEnd IfActiveBugs = numOfActiveBugs.Value Answer: A QUESTION 116You are implementing a method in an ASP.NET application that includes the following requirements. Store the number of active bugs in the cache. The value should remain in the cache when there are calls more often than every 15 seconds. The value should be removed from the cache after 60 seconds. You need to add code to meet the requirements. Which code segment should you add? A.    Cache.Insert("ActiveBugs", result, Nothing, DateTime.Now.AddSeconds(60), TimeSpan.FromSeconds(15))B.    Cache.Insert("Trigger", DateTime.Now, Nothing, DateTime.Now.AddSeconds(60), Cache.NoSlidingExpiration) Dim cd As CacheDependency = New CacheDependency(Nothing, New String() {"Trigger"})Cache.Insert("ActiveBugs", result, cd, Cache.NoAbsoluteExpiration, TimeSpan.FromSeconds(15))C.    Cache.Insert("ActiveBugs", result, Nothing, Cache.NoAbsoluteExpiration, TimeSpan.FromSeconds(15))Dim cd As CacheDependency = New CacheDependency(Nothing, New String() {"ActiveBugs"})Cache.Insert("Trigger", DateTime.Now, cd, DateTime.Now.AddSeconds(60), Cache.NoSlidingExpiration)D.    Dim cd As CacheDependency = New CacheDependency(Nothing, New String() {"Trigger"})Cache.Insert("Trigger", DateTime.Now, Nothing, DateTime.Now.AddSeconds(60), Cache.NoSlidingExpiration)Cache.Insert("ActiveBugs", result, cd, Cache.NoAbsoluteExpiration, TimeSpan.FromSeconds(15)) Answer: B QUESTION 117You are implementing an ASP.NET application that will use session state in out-of-proc mode. You add the following code:Public Class Person Public Property FirstName As String Public Property LastName As String End ClassYou need to add an attribute to the Person class to ensure that you can save an instance to session state. Which attribute should you use? A.    BindableB.    SerializableC.    DataContract Answer: B QUESTION 118You need to dynamically add TestUserControl.ascx to TestPage.aspx. Which code segment should you use? A.    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.LoadDim userControl As Control = Page.LoadControl("TestUserControl.ascx")Page.Form.Controls.Add(userControl)End SubB.    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.LoadDim userControl As Control = Page.FindControl("TestUserControl.ascx")Page.Form.Controls.Add(userControl)End SubC.    Private Sub TestPage_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.InitDim userControl As Control = Page.LoadControl("TestUserControl.ascx")Page.Form.Controls.Add(userControl)End SubD.    Private Sub TestPage_PreInit(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreInitDim userControl As Control = Page.FindControl("TestUserControl.ascx"Page.Form.Controls.Add(userControl) End Sub Answer: A QUESTION 119You create a Web page named TestPage.aspx and a user control named TestUserControl.ascx. TestPage.aspx uses TestUserControl.ascx as shown in the following line of code:<uc:TestUserControl ID="testControl" runat="server"/>On TestUserControl.ascx, you need to add a read-only member named CityName to return the value "New York". You also must add code to TestPage.aspx to read this value. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.) A.    Add the following line of code to the TestUserControl.ascx.vb code-behind file.Public ReadOnly Property CityName As StringGetReturn "New York"End GetEnd PropertyB.    Add the following line of code to the TestUserControl.ascx.vb code-behind file.Protected ReadOnly CityName As String = "New York"C.    Add the following code segment to the TestPage.aspx.vb code-behind file.Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.LoadDim s As String = testControl.CityNameEnd SubD.    Add the following code segment to the TestPage.aspx.vb code-behind file.Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.LoadDim s As String = testControl.Attributes("CityName")End Sub Answer: AC QUESTION 120You use the following declaration to add a Web user control named TestUserControl.ascx to an ASP.NET page named TestPage.aspx.<uc:TestUserControl ID="testControl" runat="server"/>You add the following code to the code-behind file of TestPage.aspx.Private Sub TestMethod()...End SubYou define the following delegate.Public Delegate Sub MyEventHandler()You need to add an event of type MyEventHandler named MyEvent to TestUserControl.ascx and attach the page's TestMethod method to the event. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.) A.    Add the following line of code to TestUserControl.ascx.vb.Public Event MyEvent As MyEventHandlerB.    Add the following line of code to TestUserControl.ascx.vb.Public MyEvent As MyEventHandlerC.    Replace the TestUserControl.ascx reference in TestPage.aspx with the following declaration.<uc:TestUserControl ID="testControl" runat="server" OnMyEvent="TestMethod"/>D.    Replace the TestUserControl.ascx reference in TestPage.aspx with the following declaration.<uc:TestUserControl ID="testControl" runat="server" MyEvent="TestMethod"/> Answer: AC http://www.passleader.com/70-515.html --------------------------------------------------- Images: --------------------------------------------------- --------------------------------------------------- Post date: 2015-12-30 05:11:56 Post date GMT: 2015-12-30 05:11:56 Post modified date: 2015-12-30 05:11:56 Post modified date GMT: 2015-12-30 05:11:56 ____________________________________________________________________________________________ Export of Post and Page as text file has been powered by [ Universal Post Manager ] plugin from www.gconverters.com