You are testing the user experience.

Which of these are issues that affect the user experience?

Select 2 options.


You did not use comments to document your code.

A user complained about the language used in the program.

The variables do not have meaningful names.

The program should have used a loop for a repetitive process.

The numerical results are not calculated correctly.

Respuesta :

Answer:

You can answer this very easily by considering which of the circumstances affect the end user and which affect the developer:

1) Didn't use comments in the code

- affects developers

2) User complaints about language used in the program

- affects users

3) The variables have meaningless names

- affects developers

4) The program should have used a loop

- affects developers

5) The numeric results are incorrect

- affects users

Your answers then are 2 and 5, spoken languages and incorrect output will very much affect the user experience.

Answer:

  • A user complained about the language used in the program.

  • The numerical results are not calculated correctly.

Explanation:

A) You did not use comments to document your code.

- affects developers



B) A user complained about the language used in the program.

- affects users



C) The variables do not have meaningful names.

- affects users



D) The program should have used a loop for a repetitive process.

- affects developers

E) The numeric results are incorrect

- affects users