Searching for "details."

Q:

You are a project manager for the redevelopment of the Hoover Dam. Your team has been provided with the scope statement, but it lacks many description details. Your team is concerned because the project is in the initiation phase and it wants to postpone it until it has more information. As the project manager, you recommend that

A) The team should go forward, but be caution about the lack of details and the impact upon the timeline for the project B) The project should not go forward until the stakeholders agree about the scope and purpose of the project
C) The team should verify the scope and realize that more details will be available as more project characteristics are progressively elaborated. D) The team should review the project selection criteria for the Hoover Dam project
 
Answer & Explanation Answer: C) The team should verify the scope and realize that more details will be available as more project characteristics are progressively elaborated.

Explanation:

The project details and description will usually have less detail at the beginning of the project and will increase as the characteristics are progressively elaborated. Answer A is incorrect because the team should confirm that they understand the esence of the scope of the project, even if the details might be ambiguous at the beginning of the project. Answer B is incorrect because the project should go forward; however, the team should request further clarification of what the project scope entails. Answer D is incorrect because the project selection criteria should be established before the project begins.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

Karnataka Bank Limited has recently launched Missed Call Banking Facility. Which of the following Statements are true regarding this?

(1) After giving missed call, the customer gets his account balance/mini statement through SMS on his mobile

(2) This Facility is free of cost

(3) Bank customers can give missed call from their registered mobile number to the designated numbers of the Bank and Know balance in their account or get mini statement

(4) These services are available only from registered mobile number of a customer to ensure confidentiality of the account details.

A) 1,3 and 4 B) 1,2 and 3
C) 1,2 and 4 D) 1,2,3 and 4
 
Answer & Explanation Answer: D) 1,2,3 and 4

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

Q:

What are the different tests that can be done for Client Server Application and Web-based Application. Give details.

Answer

For both client server and web based applications, the testing is the same except one thing: We test web based applications in different browsers, for example, Internet Explorer (will test in different versions like IE 5.0, IE 6.0, IE 7.0), Firefox, Safari (for Mac) and so on where as for client server, we don’t need to test in the browsers.

Report Error

View answer Workspace Report Error Discuss

Subject: QA Testing

Q:

You ASP.NET application manages order entry data by using a DataSet object named EXorderEntry. The EXorderEntry object includes two DataTable objects named orderNames and OrderDetails. A ForeignKeyConstraint object named orderDetailsKey is defined between the two DataTable objects.


You attempt to delete a row in orderNames while there are related rows in OrderDetails, and an exception is generated.What is the most likely cause of the problem?

A) The current value of OrderDetails.KeyDeleteRule is Rule.Cascade. B) The current value of OrderDetails.KeyDeleteRule is Rule.SetNull.
C) The current value of OrderDetails.KeyDeleteRule is Rule.SetDefault. D) The current value of OrderDetails.KeyDeleteRule is Rule.None.
 
Answer & Explanation Answer: D) The current value of OrderDetails.KeyDeleteRule is Rule.None.

Explanation:

The rule enumeration indicates the action that occurs when a ForeignKeyConstraint is enforced.None specifies that no action will occur, but exceptions are generated. This is what has occurred in this scenario.

 

Incorrect Answers:

 

A: Cascade specifies that all rows containing that value are also deleted.

B: SetNull specifies that values in all child columns are set to null values.

C: SetDefault specifies that all child columns be set to the default value for the column.

Report Error

View Answer Report Error Discuss