Certification Questions

Q:

Project Human Resource Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Human Resource Planning?

Answer

I. Inputs



  • Enterprise Environmental factors

  • Organizational process assets

  • Project management plan


                  - Activity resource requirements


II. Tools and Techniques



  • Organization charts and position descriptions 

  • Networking

  • Organizational theory


III. Outputs



  • Roles and responsibilities

  • Project organization charts

  • Staffing management plan

Report Error

View answer Workspace Report Error Discuss

0 1954
Q:

Project Life Cycle

What is the Project Life Cycle?

Answer

Project managers or the organization can divide projects into phases to provide better management control with appropriate links to the ongoing operations of the performing organization. Collectively, these phases are known as the project life cycle.

Report Error

View answer Workspace Report Error Discuss

0 1953
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Develop Project Charter phase?

Answer

I. Inputs



  • Contract (when applicable)

  • Project statement of work

  • Enterprise environmental factors

  • Organizational process assets


II. Tools and Techniques



  • Project selection methods

  • Project management methodology

  • Project management information system

  • Expert Judgment


III. Outputs


         1. Project charter

Report Error

View answer Workspace Report Error Discuss

0 1949
Q:

Project Risk Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Quantitative Risk Analysis?

Answer

I. Inputs



  • Organizational process assets

  • Project scope statement

  • Risk management plan

  • Risk register

  • Project management plan


                 - Project schedule management plan


                 - Project cost management plan


II. Tools and Techniques



  • Data gathering and representation techniques

  • Quantitative risk analysis and modeling techniques


III. Outputs



  • Risk register (updates)

Report Error

View answer Workspace Report Error Discuss

0 1947
Q:

Project Scope Management

What are the Project Management Processes included in the Project Scope Management?

Answer

Scope Planning - Creating a project scope management plan that documents how the project scope will be defined,verified, controlled, and how the work breakdown structure (WBS) will be created and defined.


Scope Definition - Developing a detailed project scope statement as the basis for future project decisions.


Create WBS - Subdividing the major project deliverables and project work into smaller, more manageable components


Scope Verification - Formalizing acceptance of the completed project deliverables.


Scope Control - Controlling changes to the project scope.

Report Error

View answer Workspace Report Error Discuss

0 1947
Q:

Project Quality Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Perform Quality Assurance?

Answer

I. Inputs



  • Quality management plan

  • Quality metrics

  • Process improvement plan 

  • Work performance information 

  • Approved change requests

  • Quality control measurements 

  • Implemented change requests

  • Implemented corrective actions 

  • Implemented defect repair

  • Implemented preventive actions 


II. Tools and Techniques



  • Quality planning tools and techniques

  • Quality audits

  • Process analysis 

  • Quality control tools and techniques


III. Outputs



  • Requested changes

  • Recommended corrective actions

  • Organizational process assets (updates)

  • Project management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 1945
Q:

What is the purpose of the LOCAL_PREF attribute?

Answer

If a router has more than one route to the same IP prefix, the best path is the one with the highest LOCAL_PREF (assuming the WEIGHT attribute for the routes is equal).

Report Error

View answer Workspace Report Error Discuss

Subject: CCNP

1 1944
Q:

You are creating an ASP.NET application for XYZ. The company data is stored in a Microsoft SQL Server 6.5 database. Your application generates accounting summary reports based on transaction tables that contain million of rows.


You want your application to return each summary report as quickly as possible. You need to configure your application to connect to the database and retrieve the data in a away that achieves this goal.


What should you do?

A) Use a SqlConnection object to connect to the database, and use a SqlCommand object to run a stored procedure that returns the data. B) Use an OleDbConnection object to connect to the database, and use an OleDbCommand object to run a stored procedure that returns the data.
C) Configure SQL Server to support HTTP access, and create an XML template to run a stored procedure that returns the data in XML format. D) Use COM interop to create an ADODB.Connection object, and use an ADODB.Command object to run a SQL statement that returns the data.
 
Answer & Explanation Answer: B) Use an OleDbConnection object to connect to the database, and use an OleDbCommand object to run a stored procedure that returns the data.

Explanation:

We need to use an OleDBConnection to connect to SQL Server Version 6.5 (or earlier). 

 

Incorrect Answers:

 

A: We could use a SqlConnection object only if the SQL Server were SQL Server 7.0, 2000 or later.

 

C: HTTP functionality is not required in this scenario. It would introduce unnecessary overhead.

 

D: ADODB is a legacy standard and should not be used here

Report Error

View Answer Report Error Discuss

1 1943