Topic 7 Question 9
Dress4Win has end-to-end tests covering 100% of their endpoints. They want to ensure that the move to the cloud does not introduce any new bugs. Which additional testing methods should the developers employ to prevent an outage?
They should enable Google Stackdriver Debugger on the application code to show errors in the code.
They should add additional unit tests and production scale load tests on their cloud staging environment.
They should run the end-to-end tests in the cloud staging environment to determine if the code is working as intended.
They should add canary tests so developers can measure how much of an impact the new release causes to latency.
ユーザの投票
コメント(3)
A: Question is about "to prevent an outage" and "not introduce any new bugs". Too late to monitor application during production to detect bugs. B: load test doesn't prevent bugs but identify scaling issues only. Also unit test will not identify integration bugs. C: best choice. E2E test identify any bugs. Also "cloud staging environment" is additional testing methods as being asked in question. D: Question is not only about testing for latency but to avoid any new bugs.
Answer: C
👍 4Yogikant2021/06/04A. They should enable Google Stackdriver Debugger on the application code to show errors in the code. This is for ongoing production not the start B. They should add additional unit tests and production scale load tests on their cloud staging environment. Additional unit test is not needed. Load test is performance and capacity not relevant to bugs C. They should run the end-to-end tests in the cloud staging environment to determine if the code is working as intended.
Yes this is the whole idea of having a staging environment in Cloud D. They should add canary tests so developers can measure how much of an impact the new release causes to latency.
This will be helpful but not sufficient for identifying new bugs.
I agree answer is C
👍 2Michtalebzadeh2021/06/11- 正解だと思う選択肢: C
It should be C
👍 1froggology2023/02/28
シャッフルモード