Certification Questions

Q:

Which Windows 2000 tool can you use to initiate the transfer of images from a digital camera to your Windows 2000 computer?

A) Imaging B) Wireless Link
C) Scanners and Cameras D) Sounds and Multimedia
 
Answer & Explanation Answer: A) Imaging

Explanation:

The Imaging application (Start => Programs => Accessories => Imaging) is the only windows 2000 application that can be used to initiate image transfer. You can use Wireless Link to configure how Windows 2000 will handle received image files, but you can't use Wireless Link to initiate the image transfer.

Report Error

View Answer Report Error Discuss

0 1976
Q:

Project Time Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Activity Resource Estimating ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Activity list

  • Activity attributes

  • Resource availability

  • Project management plan


II. Tools and Techniques



  • Expert Judgment

  • Alternatives analysis

  • Published estimating data

  • Project management software

  • Bottom-up estimating


III. Outputs



  • Activity resource requirements

  • Activity atributes (updates)

  • Resource breakdown structure

  • Resource calendars (updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 1972
Q:

Word 2010 has a particular template that it uses when you first open the program. This template contains default styles, no text and you also use it when you create new, blank documents. As you customize styles, marcos and other elements these settings are automatically stored in this template.

 

What is the name of this template file?

A) Standard.dotx B) Normal.dotx
C) Empty.dotx D) Template.dotx
 
Answer & Explanation Answer: B) Normal.dotx

Explanation:
Report Error

View Answer Report Error Discuss

1 1972
Q:

Project Scope Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Create WBS ?

Answer

I. Inputs



  • Organizational process assets

  • Project scope statement

  • Project scope management  plan

  • Approved Change requests


II. Tools and Techniques



  • Work breakdown structure templates

  • Decomposition


III. Outputs



  • Project scope statement(updates)

  • Work breakdown structure

  • WBS dictionary

  • Scope baseline

  • Project scope management plan(updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 1970
Q:

Project Cost Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Cost Estimating ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets 

  • Project scope statement

  • Work breakdown structure

  • WBS dictionary 

  • Project management plan


             - Schedule management plan


             - Staffing management plan


             - Risk register


II. Tools and Techniques



  • Analogous estimating

  • Determine resource cost rates

  • Bottom-up estimating

  • Parametric estimating

  • Project management software

  • Vendor bid analysis

  • Reserve analysis

  • Cost of quality


III. Outputs



  • Activity cost estimates 

  • Activity cost estimate supporting detail 

  • Requested changes

  • Cost management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 1968
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 1966
Q:

When is Cost Per Thousand Impressions (CPM) bidding not available?

Answer

If your campaign is opted in to the Search Network.

Report Error

View answer Workspace Report Error Discuss

0 1961
Q:

You are a Web developer for XYZ. You create an ASP.NET application that accesses sales and marketing data. The data is stored in a Microsoft SQL Server 2000 database on a server named XYZ01.


The company purchases a factory automation software application. The application is installed on XYZ01, where it creates a second instance of SQL Server 2000 named Factory and a database named FactoryDB. You connect to FactoryDB by using Windows Integrated authentication.


You want to add a page to your ASP.NET application to display inventory data from  FactoryDB. You use a SqlConnection object to connect to the database. You need to create a connection string to FactoryDB in the instance of SQL Server named Factory on XYZ01. Which string should you use?

A) ?Server=XYZ01;Data Source=Factory; Initial Catalog=FactoryDB;Integrated Security=SSPI? B) ?Server=XYZ01;Data Source=Factory; Database=FactoryDB;Integrated Security=SSP1?
C) ?Data Source=XYZ01\Factory; Initial Category=Factory; Integrated Security=SSP1? D) ?Data Source=XYZ01\Factory; Database=FactoryDB; Integrated Security=SSP1?
 
Answer & Explanation Answer: D) ?Data Source=XYZ01\Factory; Database=FactoryDB; Integrated Security=SSP1?

Explanation:

The Data Source attribute of the connection string contains the name, instance or network address of the instance of SQL Server to which to connect. In this scenario we are to connect to the Factory Instance on XYZ01 so we use XYZ01\Factory as data source. To specify the database we should either use the Database or the Initial Catalog attribute. Here we use Database=FactoryDB.

 

Incorrect Answers:

 

A, B: There is no Server attribute in the connection string. Instead we should use the Data Source attribute to specify the server and the instance.

 

C: There is no Initial Category attribute in the connection string. We can use Database or the Initial Catalog attribute to specify the database.

Report Error

View Answer Report Error Discuss

0 1960