Certification Questions

Q:

The triple constraints of Project Management are frequently discussed in other contextx such as marketing classes and a variety of other subjects. The interaction between _____, ______, and _______can be seen as a triangle, with the three sides impacting the others.

A) quality, resources, time B) money, resources, quality
C) scope, quality, planning D) time, scope, cost
 
Answer & Explanation Answer: D) time, scope, cost

Explanation:

Scope, quality, and cost are the triple constraints. Quality is a function of these three areas and can impact them; however it is not considered one of the components of the triple constraint. Therefore, Answer A, B, and C are incorect.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 3787
Q:

You are the administrator of a SQL Server 2000 computer. The server contains a database named FinanceData that is used by a client/server application. Each employee has a SQL Server login that the application uses to access the server.Your company hires a new employee named Andrew. You create a SQL Server login named Andrew. You also create a database user named Andrew in the database and grant the database user full permissions in the database.Whenever Andrew runs the client/server application, he receives the following error message: "Invalid object name." Andrew also reports that he cannot access the database by using the application.You need to ensure that Andrew can use the application. Which Transact-SQL statement should you execute?

A) EXEC sp_defaultdb 'Andrew','FinanceData' B) GRANT ALL ON FinanceData TO Andrew
C) EXEC sp_addlogin 'Andrew' D) EXEC sp_grantdbaccess 'FinanceData','Andrew'GOsp_addrolemember 'db_datareader','Andrew'
 
Answer & Explanation Answer: A) EXEC sp_defaultdb 'Andrew','FinanceData'

Explanation:

Error 208 produces the message 'Invalid object name' and occurs when an object that does not exist in the current database is referenced. If the object exists in another database, we must use the USE statement to explicitly switch the context to the correct database or we must qualify the object name with the database name. A third option is to use the sp_defaultdb stored procedure. This stored procedure is used to change the default database for a login. When a client connects with SQL Server, the default database defined for its login becomes the current database without an explicit USE statement. The default database can be defined when the login is added with
sp_addlogin. When executing sp_addlogin the master database is the default database if a database is not specified. In this scenario a SQL Server 2000 login and a user account has been created for Andrew and he has been given database access and the required permissions.

Report Error

View Answer Report Error Discuss

0 3778
Q:

What command displays the ARP table on a Cisco router?

A) show ip arp B) traceroute
C) arp -a D) tracert
 
Answer & Explanation Answer: A) show ip arp

Explanation:

The command that displays the ARP table on a Cisco router is show ip arp.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

0 3770
Q:

How can you store long-term prices for services in the form of service conditions?

A. At the service and plant level

B. At the service and vendor level

C. At the service level

D. At the service, vendor and plant level

Answer

Answer: B , C , D


 


Explanation: Long term prices can be maintained at Service level, Service and Vendor level or Service, Vendor and Plant level.

Report Error

View answer Workspace Report Error Discuss

Subject: SAP MM

11 3755
Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an
application. You use the ADO.NET Entity Framework to model entities. You write the following code segment. (Line numbers are included for reference only.)


01AdventureWorksEntities context = New AdventureWorksEntities
02
03var q = from c in context.Customers
04where c.City == "London"
05orderby c.CompanyName
06select c;


You need to ensure that the application meets the following requirements: "Compares the current values of unmodified properties with values returned from the data source". Marks the property as modified when the properties are not the same. Which code segment should you insert at line 02?

A) context.MergeOption = MergeOption.AppendOnly; B) context.MergeOption = MergeOption.PreserveChanges;
C) context.MergeOption = MergeOption.OverwriteChanges; D) context.MergeOption = MergeOption.NoTracking;
 
Answer & Explanation Answer: B) context.MergeOption = MergeOption.PreserveChanges;

Explanation:
Report Error

View Answer Report Error Discuss

17 3743
Q:

You type Router#sh ru and receive a % ambiguous command error. why did you receive this message?

A) The command requires additional options or parameters B) There is more than one show command that starts with the letters ru.
C) There is no show command that starts with ru D) The command is being executed from the wrong router mode
 
Answer & Explanation Answer: B) There is more than one show command that starts with the letters ru.

Explanation:

The % ambiguous command error means that there is more than one possible show command that starts with ru. Use a question mark to find the correct command.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

0 3735
Q:

Where are EIGRP successor routes stored?

A) In the routing table only B) In the neighbor table only
C) In the routing table and neighbor table D) In the routing table and the topology table
 
Answer & Explanation Answer: D) In the routing table and the topology table

Explanation:

Successor routes are going to be in the routing table since they are the best path to a remote network. However, the topology table has a link to each and every network, so the best answer is topology table and routing table. Any secondary route to a remote network is considered a feasible successor, and those routes are found only in the topology table and used as backup routes in case of primary route failure.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

0 3723
Q:

In the Determine Budget processes the project schedule

A) is not one of the inputs to these processes. B) is used to allocate the project budget to the various project activities.
C) is used to assign costs to the time period when the costs will be incurred D) is used to determine the size of the contingency component of the budget after all scheduled costs are accounted for.
 
Answer & Explanation Answer: C) is used to assign costs to the time period when the costs will be incurred

Explanation:

“This [project schedule] information can be used to aggregate costs to the calendar periods when the costs are planned to be incurred.” PMBOK [7.2.1.4]

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 3706