What should you recommend?
You are designing a Windows Phone 7 application. The application downloads data from a companys web pages. The UI is not responding while downloading this data. You need to recommend an update to the application to prevent it from being unresponsive while downloading data. What should you recommend?
What should you do?
You administer a Forefront Identity Management (FIM) 2010 server in your company network. You want to provision new users to Active Directory Domain Services (AD DS). You need to calculate a random password for newly created user accounts. You also need to be able to send the password in an automatic e-mail notification. What should you do?
Which client installation methods should you identify?
Your network contains a Windows Server Update Services (WSUS) server. All client computers are configured as WSUS clients. All of the client computers have Windows Firewall enabled. Windows Firewall is configured to block File and Printer Sharing. Users are not configured as local Administrators on their client computers. You deploy System Center 2012 Configuration Manager. You need to identify which methods you can use to deploy the Configuration Manager client to an of the client computers. Which client installation methods should you identify? (Choose all that Apply.)
Which actions should you perform?
You are designing a Windows Phone 7 application that consists of two PhoneApplicationPage objects. The application must take data entered by a user on the first page and pass the data to the second page for display purposes. You need to ensure that user data is passed properly from the first page and retrieved on the second page. Which actions should you perform? (Each correct answer presents part of the solution. Choose all that apply.)
What should you do?
You administer a Forefront Identity Management (FIM) 2010 server in your company network. You need to configure a regular backup of the FIM Synchronization Service while minimizing interruption to the service if possible. What should you do?
What should you install?
Your network contains a System Center 2012 Configuration Manager environment. The environment contains a single primary site. You need to provide users with the ability to remotely reset their mobile device to the factory settings. What should you install?
Which code segment should you recommend for the main page?
You are designing a Windows Phone 7 application that contains a Pivot page.
The Pivot page contains the following code.
Protected Overrides Sub OnNavigatedTo(
ByVal e As System.Windows.Navigation.NavigationEventArgs) Dim index As Integer =
Convert.ToInt32(NavigationContext.QueryString(“index”)) pivot1.SelectedIndex = index
MyBase.OnNavigatedTo(e)
End Sub
You need to ensure that navigation between the main page and the Pivot page works without runtime errors. Which code segment should you recommend for the main page?
What should you do?
You administer a Forefront Identity Management (FIM) 2010 server in your company network. The server that runs the FIM Portal fails. You begin the restore process. However, you receive an error when you stop the SQL Server Agent service. You need to be able to continue the restore process.
What should you do?
What should you do?
Your network contains two Active Directory forests named contoso.com and litwareinc.com. You implement System Center 2012 Configuration Manager in the contoso.com forest. You deploy the Configuration Manager client to all of the client computers in contoso.com by using a logon script. You need to ensure that the Configuration Manager client is automatically deployed to all of the client computers in the litwareinc.com forest. What should you do? (Choose all that Apply.)
Which code segment should you recommend for the main page?
You are designing a Windows Phone 7 application that contains a Pivot page. The Pivot page contains the following code.
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e) {
int index = Convert.ToInt32(NavigationContext.QueryString[“index”]); pivot1.SelectedIndex = index;
base.OnNavigatedTo(e);
}
You need to ensure that navigation between the main page and the Pivot page works without runtime errors.
Which code segment should you recommend for the main page?