READ Free Dumps For Microsoft- 70-488
Question ID 12566 | You need to add code at line CT11 to create the content types.
How should you complete the relevant code? (To answer, drag the appropriate code
segments to the correct location or locations in the answer area. Each code segment may
be used once, more than once, or not at all. You may need to drag the split bar between
panes or scroll to view content.)
|
Option A | Answer :
|
Correct Answer | A |
Explanation
Question ID 12567 | You must upgrade the existing version of the application to a newer version.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose all that apply.)
|
Option A | Add the following code segment at line CX11: <VersionRangeBeginVersion="1.0" EndVersion="2.e">
|
Option B | Add the following code segment at CX13: <VersionRange BeginVersion-"1.0.0.0"EndVersion-"2.0.0.0">
|
Option C | Use Microsoft Visual Studio to change the feature version to 1.5.0.0.
|
Option D | Use Microsoft Visual Studio to change the feature version to 1.5.
|
Option E | Add the following code segment at line CX11: <VersionRange BeginVersion-"1.0.0.0"EndVersion-"2.0.0.0">
|
Correct Answer | B,C |
Explanation Explanation: B: VersionRange Element specifies a range of previous versions of the Feature to which the upgrade actions should apply. / BeginVersion: Specifies the earliest version number to which the child upgrade elements will apply, in the format n.n.n.n, where each n can be up to four digits. / EndVersion: Specifies the earliest version number to which the upgrade will not apply. The format is n.n.n.n, where each n can be up to four digits. C: Feature versions in Microsoft SharePoint Foundation are used to trigger Feature upgrade. If you update your Feature version but do not specify any Feature upgrade logic in the Feature.xml file, when the Feature upgrade runs, it simply updates the version number of your Feature. However, if you specify Feature upgrade logic, the upgrade code is executed and the version number is automatically updated as well. Scenario: New Features The first version (1.0.0.0) of the feature must support the addition of newer functionality when the feature is upgraded to version 1.5.0.0. Reference: VersionRange Element (Feature); Best Practices for Using Feature Versions