显示标签为“70-545”的博文。显示所有博文
显示标签为“70-545”的博文。显示所有博文

2014年3月14日星期五

L'avènement de la certification Microsoft pratique d'examen 70-545 questions et réponses

Il y a nombreux façons à vous aider à réussir le test Microsoft 70-545. Le bon choix est l'assurance du succès. Pass4Test peut vous offrir le bon outil de formation, lequel est une documentation de qualité. La Q&A de test Microsoft 70-545 est recherchée par les experts selon le résumé du test réel. Donc l'outil de formation est de qualité et aussi autorisé, votre succès du test Microsoft 70-545 peut bien assuré. Nous allons mettre le jour successivement juste pour répondre les demandes de tous candidats.

Beaucoup de travailleurs dans l'Industrie IT peut obenir un meilleur travail et améliorer son niveau de vie à travers le Certificat Microsoft 70-545. Mais la majorité des candidats dépensent beaucoup de temps et d'argent pour préparer le test, ça ne coûte pas dans cette société que le temps est tellement précieux. Pass4Test peut vous aider à économiser le temps et l'effort pendant le cours de la préparation du test Microsoft 70-545. Choisir le produit de Pass4Test particulier pour le test Certification Microsoft 70-545 vous permet à réussir 100% le test. Votre argent sera tout rendu si malheureusement vous ne passez pas le test.

Il demande les connaissances professionnelles pour passer le test Microsoft 70-545. Si vous manquez encore ces connaissances, vous avez besoin de Pass4Test comme une resourece de ces connaissances essentielles pour le test. Pass4Test et ses experts peuvent vous aider à renfocer ces connaissances et vous offrir les Q&As. Pass4Test fais tous efforts à vous aider à se renforcer les connaissances professionnelles et à passer le test. Choisir le Pass4Test peut non seulement à obtenir le Certificat Microsoft 70-545, et aussi vous offrir le service de la mise à jour gratuite pendant un an. Si malheureusement, vous ratez le test, votre argent sera 100% rendu.

Le test Microsoft 70-545 est le premier pas pour promouvoir dans l'Industrie IT, mais aussi la seule rue ramenée au pic de succès. Le test Microsoft 70-545 joue un rôle très important dans cette industrie. Et aussi, Pass4Test est un chaînon inevitable pour réussir le test sans aucune doute.

Le Certificat de Microsoft 70-545 peut vous aider à monter un autre degré de votre carrière, même que votre niveau de vie sera amélioré. Avoir un Certificat Microsoft 70-545, c'est-à-dire avoir une grande fortune. Le Certificat Microsoft 70-545 peut bien tester des connaissances professionnelles IT. La Q&A Microsoft 70-545 plus nouvelle vient de sortir qui peut vous aider à faciilter le cours de test préparation. Notre Q&A comprend les meilleurs exercices, test simulation et les réponses.

Code d'Examen: 70-545
Nom d'Examen: Microsoft (TS: Microsoft Visio 2007, Application)
Questions et réponses: 86 Q&As

Le test Microsoft 70-545 est très important dans l'Industrie IT, tous les professionnels le connaîssent ce fait. D'ailleur, c'est difficile à réussir ce test, toutefois le test Microsoft 70-545 est une bonne façon à examiner les connaissances professionnelles. Un gens avec le Certificat Microsoft 70-545 sera apprécié par beaucoup d'entreprises. Pass4Test est un fournisseur très important parce que beaucoup de candidats qui ont déjà réussi le test preuvent que le produit de Pass4Test est effectif. Vous pouvez réussir 100% le test Microsoft 70-545 avec l'aide de Pass4Test.

Choisir le produit fait avec tous efforts des experts de Pass4Test vous permet à réussir 100% le test Certification IT. Le produit de Pass4Test est bien certifié par les spécialistes dans l'Industrie IT. La haute qualité du produit Pass4Test ne vous demande que 20 heures pour préparer, et vous allez réussir le test Microsoft 70-545 à la première fois. Vous ne refuserez jamais pour le choix de Pass4Test, parce qu'il symbole le succès.

70-545 Démo gratuit à télécharger: http://www.pass4test.fr/70-545.html

NO.1 You are developing an Office Visio 2007 Shared Add-in. You create three objects named objMaster, objPage, and objWindow. The object objMaster references a local copy of the master. The object objPage references the current page. The object objWindow references the active window. You need to create several shape instances of the master on the current page at specific coordinates in the active window. Which method should you use?
A. objPage.Drop()
B. objPage.DropMany()
C. objWindow.CreateSelection()
D. objMaster.Shapes.Item(1).Copy() objPage.Paste()
Answer: B

Microsoft examen   70-545 examen   certification 70-545

NO.2 You are developing an Office Visio 2007 SharedAdd-in.
You construct an event sink class that listens to events from the Visio 2007 Application,
Document, Page, and Shape objects. The VisEventProc function has the following signature:
Public Function VisEventProc(
ByVal eventCodeAs Short,
ByVal sourceAs Object,
ByVal eventIdAs Integer,
ByVal eventSequenceNumberAs Integer,
ByVal subjectAs Object,
ByVal moreInformationAs Object)As Object
You need to construct a switch to identify the object that raised the event.
Which parameter should you use?
A. eventCode
B. moreInformation
C. source
D. subject
Answer: C

Microsoft   70-545   70-545 examen   certification 70-545   70-545   70-545

NO.3 You plan to create an Office Visio 2007 application. You need to prevent Visio 2007 from failing in the event that there is a fault in the application. What are three possible ways to achieve this goal? (Each correct answer presents a complete solution. Choose three.)
A. CreateaVBAsolution.
B. CreateaVSLsolution.
C. Create an EXE add-on solution.
D. CreateaSharedAdd-insolution,andthenusetheCOMShimWizardtocreateaDLL.
E. Create a Shared Add-in solution by using Microsoft Visual Studio 2005 Tools for Office Second Edition.
Answer: CDE

Microsoft examen   70-545   certification 70-545

NO.4 You are developing an Office Visio 2007 Shared Add-in. You need to modify the add-in to perform an action after the Visio 2007 application flushes its events queue. What should you do?
A. ListenforAppDeactivated.
B. Listen for RunModeEntered.
C. Listen for MustFlushScopeBeginning.
D. Queue a MarkerEvent and then listen for a MarkerEvent.
Answer: D

Microsoft   70-545 examen   70-545   70-545 examen   70-545

NO.5 You have a Windows Forms application that contains an embedded Visio Drawing Control.
You have an Office Visio 2007 drawing saved as C:\Template.vsd. You need to configure the
application to load and display the drawing as a template by using the Visio Drawing Control.
Which code should you add to the application?
A. Me.axDrawingControl1. Document.Application.Documents.Open( "C:\Template.VSD ")
B. Me.axDrawingControl1.Window.Application.Documents.Open( " C:\Template.VSD " )
C. Me.axDrawingControl1.Src = " C:\Template.VSD "
D. Dim openDockedFlag As Short = CShort(Visio.VisOpenSaveArgs.visOpenDocked) Me.axDrawingControl1.Window.Application.Documents. OpenEx("C:\Template.VSD",openDockedFlag)
Answer: C

Microsoft   70-545   70-545 examen

NO.6 You need to develop an Office Visio 2007 solution for 1,000 computers that run Visio 2007.
The solution must meet the following requirements:
The solution must not require the installation of additional components, tools, or DLLs. Users
must be able to customize the solution without installing additional development tools.
What should you develop?
A. A template and a Visio Solutions Library (VSL)
B. A custom stencil that uses ShapeSheet programming
C. A Windows Forms application that contains the Visio Drawing Control
D. A solution by using Microsoft Visual Studio 2005 Tools for Office Second Edition
Answer: B

Microsoft   certification 70-545   certification 70-545   certification 70-545   70-545

NO.7 You are developing an Office Visio 2007 Shared Add-in. You need to prevent shape deletions by using custom logic. What should you do?
A. Configure the add-in to listen to the QueryCancelPageDelete event of the Visio 2007 application.
B. Configure the add-in to listen to the QueryCancelSelectionDelete event of the Visio 2007 application.
C. Configure the add-in to listen to the BeforeShapeDelete event of the Visio 2007 application.
D. Configure the add-in to listen to the BeforeSelectionDelete event of the Visio 2007 application.
Answer: B

Microsoft   70-545   70-545 examen

NO.8 You are creating an application that will be used to connect two two-dimensional (2-D) shapes by using a Dynamic Connector shape. In your application, you create an object named myVisioApp that references the Visio Application object. You need to add code to your application to connect the 2-D shapes. What code should you add?
A. myVisioApp.Active P age.Shapes(1). Cells(PinX). GlueTo( myVisioApp.Active P age.Shapes(2) .Cells(PinX) )
B. myVisioApp.Active P age. Shapes(1).Cells(BeginX).GlueTo myVisioApp.ActivePage.Shapes(2).Cells(Connections.X1)
C. myVisioApp.Active P age.Shapes(1).AutoConnect( myVisioApp.Active P age.Shapes(2), visAutoConnectDirNone)
D. myVisioApp.Active P age.Shapes(1).AutoConnect( myVisioApp.Active P age.Shapes( 1 ) , visAutoConnectDirRight )
Answer: C

Microsoft   70-545   certification 70-545   certification 70-545   70-545   70-545

NO.9 You are developing an Office Visio 2007 Shared Add-in. You create an object named objShape that references a new shape. You need to modify the add-in to identify the shape if the shape is moved to a different page. Which property of objShape should you reference?
A. ID
B. Name
C. NameID
D. UniqueID(visGetOrMakeGUID)
Answer: D

Microsoft examen   70-545 examen   70-545   70-545   70-545

NO.10 You create a custom template and several custom stencils. You need the stencils to open automatically when a new file is created from the template. What should you do?
A. Deploy the stencils to the My Shapes folder.
B. Deploy the stencils to the same folder as the template.
C. Dock the stencils in the template workspace, and then save the template.
D. Modify the Office Visio 2007 application settings to contain the path to the stencils.
Answer: C

Microsoft   70-545 examen   70-545   70-545 examen   70-545

Obtenez la Q&A de test Microsoft 70-545 de Pass4Test plus tôt, vous pouvez réussir le test Certification Microsoft 70-545 plus tôt.

2013年9月11日星期三

Dernières Microsoft 70-545 de la pratique de l'examen questions et réponses téléchargement gratuit

Le test Microsoft 70-545 est test certification très répandu dans l'industrie IT. Vous pourriez à améliorer votre niveau de vie, l'état dans l'industrie IT, etc. C'est aussi un test très rentable, mais très difficile à réussir.

La solution offerte par Pass4Test comprenant un test simulation bien proche de test réel Microsoft 70-545 peut vous assurer à réussir 100% le test Microsoft 70-545. D'ailleur, le service de la mise à jour gratuite est aussi pour vous. Maintenant, vous pouvez télécharger le démo gratuit pour prendre un essai.

Vous serez impressionné par le service après vendre de Pass4Test, le service en ligne 24h et la mise à jour après vendre sont gratuit pour vous pendant un an, et aussi vous allez recevoir les informations plus nouvelles à propos de test Certification IT. Vous aurez un résultat imaginaire en coûtant un peu d'argent. D'ailleurs, vous pouvez économier beaucoup de temps et d'efforts avec l'aide de Pass4Test. C'est vraiment un bon marché de choisir le Pass4Test comme le guide de formation.

L'équipe de Pass4Test se composant des experts dans le domaine IT. Toutes les Q&As sont examinées par nos experts. Les Q&As offertes par Pass4Test sont réputées pour sa grande couverture ( presque 100%) et sa haute précision. Vous pouvez trouver pas mal de sites similaires que Pass4Test, ces sites peut-être peuvent vous offrir aussi les guides d'études ou les services en ligne, mais on doit admettre que Pass4Test peut être la tête de ces nombreux sites. La mise à jour, la grande couverture des questions, la haute précision des réponses nous permettent à augmenter le taux à réussir le test Certification Microsoft 70-545. Tous les points mentionnés ci-dessus seront une assurance 100% pour votre réussite de test Certification Microsoft 70-545.

Choisir le produit fait avec tous efforts des experts de Pass4Test vous permet à réussir 100% le test Certification IT. Le produit de Pass4Test est bien certifié par les spécialistes dans l'Industrie IT. La haute qualité du produit Pass4Test ne vous demande que 20 heures pour préparer, et vous allez réussir le test Microsoft 70-545 à la première fois. Vous ne refuserez jamais pour le choix de Pass4Test, parce qu'il symbole le succès.

Les produits de Pass4Test a une bonne qualité, et la fréquence de la mise à jour est bien impressionnée. Si vous avez déjà choisi la Q&A de Pass4Test, vous n'aurez pas le problème à réussir le test Microsoft 70-545.

Code d'Examen: 70-545
Nom d'Examen: Microsoft (TS: Microsoft Visio 2007, Application)
Questions et réponses: 86 Q&As

70-545 Démo gratuit à télécharger: http://www.pass4test.fr/70-545.html

NO.1 You are developing an Office Visio 2007 Shared Add-in. You need to modify the add-in to perform an action after the Visio 2007 application flushes its events queue. What should you do?
A. ListenforAppDeactivated.
B. Listen for RunModeEntered.
C. Listen for MustFlushScopeBeginning.
D. Queue a MarkerEvent and then listen for a MarkerEvent.
Answer: D

Microsoft   certification 70-545   70-545 examen   certification 70-545

NO.2 You plan to create an Office Visio 2007 application. You need to prevent Visio 2007 from failing in the event that there is a fault in the application. What are three possible ways to achieve this goal? (Each correct answer presents a complete solution. Choose three.)
A. CreateaVBAsolution.
B. CreateaVSLsolution.
C. Create an EXE add-on solution.
D. CreateaSharedAdd-insolution,andthenusetheCOMShimWizardtocreateaDLL.
E. Create a Shared Add-in solution by using Microsoft Visual Studio 2005 Tools for Office Second Edition.
Answer: CDE

Microsoft   70-545   70-545 examen   70-545 examen

NO.3 You have a Windows Forms application that contains an embedded Visio Drawing Control.
You have an Office Visio 2007 drawing saved as C:\Template.vsd. You need to configure the
application to load and display the drawing as a template by using the Visio Drawing Control.
Which code should you add to the application?
A. Me.axDrawingControl1. Document.Application.Documents.Open( "C:\Template.VSD ")
B. Me.axDrawingControl1.Window.Application.Documents.Open( " C:\Template.VSD " )
C. Me.axDrawingControl1.Src = " C:\Template.VSD "
D. Dim openDockedFlag As Short = CShort(Visio.VisOpenSaveArgs.visOpenDocked) Me.axDrawingControl1.Window.Application.Documents. OpenEx("C:\Template.VSD",openDockedFlag)
Answer: C

Microsoft examen   70-545   certification 70-545   70-545   70-545

NO.4 You create a custom template and several custom stencils. You need the stencils to open automatically when a new file is created from the template. What should you do?
A. Deploy the stencils to the My Shapes folder.
B. Deploy the stencils to the same folder as the template.
C. Dock the stencils in the template workspace, and then save the template.
D. Modify the Office Visio 2007 application settings to contain the path to the stencils.
Answer: C

Microsoft   certification 70-545   70-545   certification 70-545

NO.5 You are developing an Office Visio 2007 Shared Add-in. You need to prevent shape deletions by using custom logic. What should you do?
A. Configure the add-in to listen to the QueryCancelPageDelete event of the Visio 2007 application.
B. Configure the add-in to listen to the QueryCancelSelectionDelete event of the Visio 2007 application.
C. Configure the add-in to listen to the BeforeShapeDelete event of the Visio 2007 application.
D. Configure the add-in to listen to the BeforeSelectionDelete event of the Visio 2007 application.
Answer: B

certification Microsoft   certification 70-545   70-545

NO.6 You are creating an application that will be used to connect two two-dimensional (2-D) shapes by using a Dynamic Connector shape. In your application, you create an object named myVisioApp that references the Visio Application object. You need to add code to your application to connect the 2-D shapes. What code should you add?
A. myVisioApp.Active P age.Shapes(1). Cells(PinX). GlueTo( myVisioApp.Active P age.Shapes(2) .Cells(PinX) )
B. myVisioApp.Active P age. Shapes(1).Cells(BeginX).GlueTo myVisioApp.ActivePage.Shapes(2).Cells(Connections.X1)
C. myVisioApp.Active P age.Shapes(1).AutoConnect( myVisioApp.Active P age.Shapes(2), visAutoConnectDirNone)
D. myVisioApp.Active P age.Shapes(1).AutoConnect( myVisioApp.Active P age.Shapes( 1 ) , visAutoConnectDirRight )
Answer: C

Microsoft examen   70-545   certification 70-545   70-545   certification 70-545

NO.7 You are developing an Office Visio 2007 SharedAdd-in.
You construct an event sink class that listens to events from the Visio 2007 Application,
Document, Page, and Shape objects. The VisEventProc function has the following signature:
Public Function VisEventProc(
ByVal eventCodeAs Short,
ByVal sourceAs Object,
ByVal eventIdAs Integer,
ByVal eventSequenceNumberAs Integer,
ByVal subjectAs Object,
ByVal moreInformationAs Object)As Object
You need to construct a switch to identify the object that raised the event.
Which parameter should you use?
A. eventCode
B. moreInformation
C. source
D. subject
Answer: C

Microsoft   certification 70-545   70-545   70-545

NO.8 You need to develop an Office Visio 2007 solution for 1,000 computers that run Visio 2007.
The solution must meet the following requirements:
The solution must not require the installation of additional components, tools, or DLLs. Users
must be able to customize the solution without installing additional development tools.
What should you develop?
A. A template and a Visio Solutions Library (VSL)
B. A custom stencil that uses ShapeSheet programming
C. A Windows Forms application that contains the Visio Drawing Control
D. A solution by using Microsoft Visual Studio 2005 Tools for Office Second Edition
Answer: B

Microsoft   70-545   certification 70-545   70-545   70-545 examen

NO.9 You are developing an Office Visio 2007 Shared Add-in. You create an object named objShape that references a new shape. You need to modify the add-in to identify the shape if the shape is moved to a different page. Which property of objShape should you reference?
A. ID
B. Name
C. NameID
D. UniqueID(visGetOrMakeGUID)
Answer: D

certification Microsoft   certification 70-545   70-545

NO.10 You are developing an Office Visio 2007 Shared Add-in. You create three objects named objMaster, objPage, and objWindow. The object objMaster references a local copy of the master. The object objPage references the current page. The object objWindow references the active window. You need to create several shape instances of the master on the current page at specific coordinates in the active window. Which method should you use?
A. objPage.Drop()
B. objPage.DropMany()
C. objWindow.CreateSelection()
D. objMaster.Shapes.Item(1).Copy() objPage.Paste()
Answer: B

Microsoft examen   70-545   70-545   70-545 examen

Pass4Test possède une grande équipe composée des experts IT qui travaillent dur avec leurs riches expériences et connaissances pour produire un bon outil de formation. Selon les anciens test, le test simulation de Pass4Test est bien lié avec le test réel. Pass4Test peut vous assurer à réussir le test. Maintenant vous ajoutez votre outil de formation au panier, et votre rêve réalisera bien tôt.

2013年8月5日星期一

Meilleur Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859 test formation guide

Quand vous hésitez même à choisir Pass4Test, le démo gratuit dans le site Pass4Test est disponible pour vous à essayer avant d'acheter. Nos démos vous feront confiant à choisir Pass4Test. Pass4Test est votre meilleur choix à passer l'examen de Certification Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859, et aussi une meilleure assurance du succès du test 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859. Vous choisissez Pass4Test, vous choisissez le succès.


Vous pouvez télécharger tout d'abord le démo gratuit pour prendre un essai. Vous serez confiant davantage sur Pass4Test après l'essai de démo. Vous allez réussir le test Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859 sans aucune doute si vous choisissez le Pass4Test.


La Q&A Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859 de Pass4Test est liée bien avec le test réel de Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859. La mise à jour gratuite est pour vous après vendre. Nous avons la capacité à vous assurer le succès de test Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859 100%. Si malheureusement vous échouerez le test, votre argent sera tout rendu.


Les produits de Pass4Test sont recherchés par les experts de Pass4Test qui se profitent de leurs connaissances et leurs expériences dans l'Idustrie IT. Si vous allez participer le test Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859, vous devez choisir Pass4Test. La Q&A de Pass4Test peut vous aider à préparer mieux le test Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859 avec sa grande couiverture des questions. En face d'un test très difficile, vous pouvez obtenir le Certificat Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859 sans aucune doute.


Si vous voulez se prouver une compétition et s'enraciner le statut dans l'industrie IT à travers de test Certification Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859, c'est obligatoire que vous devez avior les connaissances professionnelles. Mais il demande pas mal de travaux à passer le test Certification Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859. Peut-être d'obtenir le Certificat Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859 peut promouvoir le tremplin vers l'Industrie IT, mais vous n'avez pas besoin de travailler autant dur à préparer le test. Vous avez un autre choix à faire toutes les choses plus facile : prendre le produit de Pass4Test comme vos matériaux avec qui vous vous pratiquez avant le test réel. La Q&A de Pass4Test est recherchée particulièrement pour le test IT.


Code d'Examen: 70-545

Nom d'Examen: Microsoft (TS: Microsoft Visio 2007, Application)

Questions et réponses: 86 Q&As

Code d'Examen: 70-519

Nom d'Examen: Microsoft (Designing & Developing Web Apps Using MS .NET Frmwk 4)

Questions et réponses: 125 Q&As

Code d'Examen: 70-178

Nom d'Examen: Microsoft (Microsoft Project 2010, Managing Projects)

Questions et réponses: 70 Q&As

Code d'Examen: MB3-862

Nom d'Examen: Microsoft (Microsoft Dynamics GP 2010 Inventory & Order Processingt)

Questions et réponses: 75 Q&As

Code d'Examen: 070-177

Nom d'Examen: Microsoft (TS: Microsoft Project Server 2010, Configuring)

Questions et réponses: 165 Q&As

Code d'Examen: 70-177

Nom d'Examen: Microsoft (TS: Microsoft Project Server 2010, Configuring)

Questions et réponses: 165 Q&As

Code d'Examen: MB3-859

Nom d'Examen: Microsoft (Microsoft Dynamics GP 2010 Financials)

Questions et réponses: 75 Q&As

Le test Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859 est une examination de techniques professionnelles dans l'Industrie IT. Pass4Test est un site qui peut vous aider à réussir le test Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859 rapidement. Si vous utiliser l'outil de formation avant le test, vous apprendrez tous essences de test Certification Microsoft 70-545 70-519 70-178 MB3-862 070-177 70-177 MB3-859.


70-177 Démo gratuit à télécharger: http://www.pass4test.fr/70-177.html


NO.1 You have a Project Server 2010 environment configured with default settings.
You need to provision a new Project Web App (PWA) instance that is a copy of the current environment.
What should you do?
A. Use the Project Server service application in SharePoint Central Administration and provide the names
of the databases to be used.
B. Use the Project Server service application in SharePoint Central Administration and use the default
database names.
C. Extend the Project Web App (PWA) Web application to a new host header.
D. Create a new site collection in SharePoint Central Administration.
Answer: A

Microsoft examen   70-177   certification 70-177   70-177

NO.2 You have a Project Server 2010 environment with Microsoft SQL Server 2008 Analysis Services
installed.
You need to enable Project Server reporting. You start the Excel Services Web Service Application.
Which application should you start next?
A. Business Data Connectivity Service
B. Secure Store Service
C. Security Token Service
D. Access Services Web Service
Answer: B

certification Microsoft   70-177 examen   70-177

NO.3 You are installing Project Server 2010 in a multi-server environment.
You need to perform the necessary steps to complete the installation.
What should you do first?
A. Install SharePoint Server 2010.
B. Install Project Server 2010.
C. Install SQL Server Analysis Services.
D. Install SQL Server.
Answer: D

Microsoft examen   70-177   70-177   certification 70-177   70-177   certification 70-177

NO.4 You are configuring Microsoft SQL Server 2008 Analysis Services for a Project Server 2010
environment.
You need to ensure that SQL Server 2008 Analysis Services is configured for building Project Server
2010 cubes.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Configure SQL Server network settings to enable remote connections.
B. Add the Farm Administrator account to the OLAP users local group.
C. Configure the Farm Administrators account to have administrative permissions in SQL Server Analysis
Services.
D. Create a SQL Server login for the Farm Administrator domain account and give it the required server
roles.
Answer: BC

Microsoft examen   70-177   70-177 examen

NO.5 You have a Project Server 2010 environment with two servers. Server1 is running SQL Server 2008 and
Server2 is running SharePoint Server 2010.
Project Server 2010 is installed on Server2.
You need to configure your Project Server 2010 environment to allow Project Web App (PWA) to build
OLAP cubes.
What should you do on Server2?
A. Create two groups, one named Report Authors and one named Report Viewers.
B. Install the SQL Server 2008 Native Client and Analysis Management Objects.
C. Start Excel Services and configure trusted data connections.
D. Set up trusted data connection libraries for external data.
Answer: B

Microsoft examen   70-177   70-177   70-177 examen

NO.6 You are installing Project Server 2010. The Microsoft SQL Server database is located on a separate
server.
You need to configure the database to support remote users.
What should you do?
A. Configure local and remote connections to use named pipes.
B. Configure local and remote connections to use TCP/IP.
C. Enable the SQL Server Browser service.
D. Enable SQL Server Agent for remote users.
Answer: B

certification Microsoft   70-177   70-177   70-177 examen

NO.7 You have a Project Server 2010 environment.
You need to configure Project Server 2010 to integrate with Microsoft Exchange Server 2007 R2.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Create a user account in Project Web App (PWA) for the application pool identity that is associated with
your site.
B. Create a user account in Project Web App (PWA) for each Exchange Client Access server.
C. Enable task synchronization in Project Web App (PWA).
D. Install Microsoft Outlook Web Access on Exchange Server.
Answer: BC

Microsoft examen   certification 70-177   70-177 examen   70-177   70-177 examen

NO.8 You are installing Project Server 2010 on a Windows Server 2008 server.
During the installation, you receive an error message that says that your server is missing software
prerequisites.
You need to acquire all missing components.
What should you do?
A. Run the psconfig.exe cmd evalprovision command.
B. Use the PSCOMPlus.exe command.
C. Use the Windows Server 2008 SetTracing utility.
D. Use the SharePoint 2010 Products Preparation Tool.
Answer: D

Microsoft   certification 70-177   70-177 examen

NO.9 You have a Project Server 2010 environment.
You install Project Professional 2010. Your user permissions in Project Server allow you to edit projects in
Project Professional.
You need to open a project on Project Server in Project Professional.
What should you do first?
A. Install the SQL Server Native Client.
B. Open a project for editing in Project Professional from Project Server.
C. Open the Project Server URL in Project Professional.
D. Configure Project Professional with the Project Server account settings.
Answer: D

Microsoft examen   70-177   70-177   70-177   certification 70-177   certification 70-177

NO.10 You have a single-server Project Server 2010 environment.
You are installing a cumulative update on the server.
You need to maintain data integrity and ensure that users do not modify project data during the update
process.
What should you do first?
A. Stop the Project Server Events service.
B. Quiesce the farm.
C. Run the IISReset tool from the command line.
D. Run the Upgrade-SPContentDatabase cmdlet from the SharePoint 2010 Management Shell.
Answer: B

Microsoft examen   70-177   70-177 examen   70-177   70-177