70-518 Exam Details

  • Exam Code
    :70-518
  • Exam Name
    :PRO: Design & Develop Wndws Apps Using MS .NET Frmwrk 4
  • Certification
    :Microsoft Certifications
  • Vendor
    :Microsoft
  • Total Questions
    :239 Q&As
  • Last Updated
    :Dec 13, 2021

Microsoft 70-518 Online Questions & Answers

  • Question 121:

    You are packaging updates for multiple Windows Presentation Foundation (WPF) applications by using Microsoft .NET Framework 4.

    Updates to the applications and to third-party control files are available. Updates to the applications have dependencies upon updates to the third-party control files. An update script is run at logon that allows only a single command to be

    executed.

    You need to package the application updates and updates to the third party controls to ensure that they are successfully installed.

    What should you do?

    A. Package application updates as a single installer. Package third-party control files as a merge module.
    B. Package application updates as a single installer. Package third-party control files as a separate installer.
    C. Prepare the installers for individual application updates and include the third-party control files as individual files.
    D. Prepare the installers for individual application updates and include the third-party control files as a merge module.

  • Question 122:

    You are designing an application by using Windows Presentation Foundation (WPF) and Microsoft .NET Framework 4.

    The application will run on Windows 7-based kiosks that are located indoors and outdoors. The kiosk displays have a photo sensor that will update the application with the current ambient luminosity.

    You need to ensure that the user interface (UI) of the application dynamically changes the application theme based on the ambient luminosity.

    What should you use?

    A. a visual state manager to add VisualStateGroup objects
    B. a VisualBrush control to paint the UI
    C. a RenderTransform control applied to the root canvas
    D. an attached behavior to change a merged resource dictionary

  • Question 123:

    You are creating a Windows Presentation Foundation (WPF) application by using Microsoft .NET Framework 4.

    You need to ensure that when the user attempts to run the application, the user cannot use the application if a new version of the application is available.

    What should you do?

    A. Deploy the application by using the XCopy technology.
    B. Create a Custom Action within the MSI package to check for updates.
    C. Use the ClickOnce technology along with the Search for updates during application startup setting.
    D. Use a BackgroundWorker object on an application load to connect to a Background Intelligent Transfer Service (BITS) service.

  • Question 124:

    You are developing a Windows Presentation Foundation (WPF) application by using Microsoft .NET Framework 4 and Microsoft Visual Studio 2010.

    The application will run in a partially trusted sandbox.

    You plan to deploy the application on client computers by using the ClickOnce deployment technology. You plan to sign the deployment and application manifest by using a trusted publisher certificate.

    You need to ensure that the following requirements are met:

    Users are not prompted for elevated permissions during application deployment.

    The application can request elevated permissions at runtime.

    Where should you install the trusted publisher certificate?

    A. in the trusted root store on the deployment server
    B. in the trusted publisher store on the deployment server
    C. in the trusted root store on each client computer
    D. in the trusted publisher store on each client computer

  • Question 125:

    You design a Windows Presentation Foundation (WPF) application that connects to a Microsoft SQL Server 2008 database.

    The WPF application becomes unresponsive at times. When the WPF application is running, physical memory usage is between 90 percent and 95 percent.

    You need to recommend a tool that will identify the memory usage characteristics of the WPF application. Which tool should you recommend?

    A. SQL Profiler
    B. CLR Profiler
    C. Event Tracing for Windows (ETW)
    D. Application Center Test (ACT)

  • Question 126:

    You are developing an application by using Microsoft .NET Framework 4.

    The application will be used by all employees of your company. Local file stores on the computers are secure and inaccessible remotely.

    You need to design a remote monitoring strategy to monitor the usage time of the application by each user.

    What should you do?

    A. Create a TraceLog object and the Trace object by using the System.Diagnostics element to trace startup, shutdown, and user idle time events throughout the application.
    B. Create a TraceLog object by using the System.Diagnostics element in the application configuration file. Add the TraceSource element for startup, shutdown, and user idle time events.
    C. Use the System.Management.Instrumentation namespace to publish startup, shutdown, and user idle time events of the application. Publish the events to Microsoft Operations Manager.
    D. Use the System.Management.Instrumentation namespace to issue event queries against methods that pass ProgressEvent and StoppedEvent arguments. Publish the events to the Event Log.

  • Question 127:

    You are analyzing an application that uses Microsoft .NET Framework 4 and Microsoft SQL Server 2008.

    The application is used to maintain an inventory database and is accessed from several remote Windows client applications. The application frequently updates multiple rows in a database table by using a DbDotoAdopter object.

    Users report that the application runs slowly during peak business hours.

    When large numbers of records are changed by multiple users, you discover the following:

    The CPU utilization of the client applications is normal.

    The network utilization increases slightly.

    The CPU utilization of the database server remains close to the normal average for a day.

    You need to resolve the performance issue.

    What should you do?

    A. Disable batch updates. Modify the client application to perform a single update.
    B. Insert a random time interval between updates.
    C. Move the update method calls to a separate BackgroundWorker thread.
    D. Remove any limit on batch update sizes. Modify the client application to perform a single update.

  • Question 128:

    You are designing a .NET Framework 4 solution that includes a Windows Presentation Foundation (WPF) application. The WPF application connects to a Microsoft SQL Server 2008 database. You plan to deploy the WPF application to

    millions of client computers. The SQL Server database will be hosted in a data center.

    The WPF application will query the database to provide type-ahead assistance as users enter data. The WPF application will send a query after each character is entered. Each query will access multiple joined tables.

    You need to recommend an approach for maximizing scalability of the solution.

    What should you recommend?

    A. Denormalize the data to fewer tables.
    B. Create stored procedures to abstract the tables.
    C. Use System.Runtime.Caching to cache query results on the client.
    D. Create a separate data layer with caching.

  • Question 129:

    You are designing a Windows application by using Microsoft .NET Framework 4. Remote users have limited network connectivity. Users will not have write permissions to the local file system.

    You plan to design the error logging strategy for the application.

    You need to ensure that the application can collect error information. You also need to ensure that the errors can be analyzed from a centralized location.

    What should you do?

    A. Use a local log file.
    B. Use the Microsoft Sync Framework.
    C. Log the errors to a Web service.
    D. Log the errors to the Windows System event log.

  • Question 130:

    You are working with an existing Windows Presentation Foundation (WPF) application in Microsoft Visual Studio 2010. The WPF application requires approximately one minute to initialize before displaying its main window.

    You have the following requirements:

    Immediately display a splash screen when the WPF application launches.

    Allow for the display of an initialization progress bar on the splash screen.

    Close the splash screen when the WPF application is ready to display the main window.

    You need to recommend an approach for meeting the requirements.

    What should you recommend?

    A. Move the initialization code to the code-behind of the main window.
    B. Launch a custom splash screen by using a Window object. When the initialization completes, launch the main window from the splash screen.
    C. Create a SplashScreen object. Display the object in the code-behind of the App.xaml file.
    D. Compile an image into the WPF application with a Build Action value of SplashScreen.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Microsoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 70-518 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.