| Exam Code/Number: | CTAL-TTAJoin the discussion |
| Exam Name: | Certified Tester Advanced Level Technical Test Analyst |
| Certification: | ISTQB |
| Question Number: | 175 |
| Publish Date: | Jul 16, 2026 |
|
Rating
100%
|
|
Given the following pseudocode:
Program tax check
BEGIN
yearly := 0
tax := 0
get (monthly)
get (tax_rate)
for I = 1..12 loop
yearly := yearly + monthly
tax := tax - (tax_rate * monthly)
ENDLOOP
salary := monthly * 12
IF salary = yearly THEN
print ("Salary OK")
ELSE
print ("Salary not OK")
ENDIF
year_tax := salary * tax_rate
IF year_tax = tax THEN
print ("Tax Problem")
ENDIF
END tax check
If control flow analysis is performed on the pseudocode, which of the following results is MOST likely?
Which statement is correct with respect to a mobile emulator tool?
You have been assigned to perform a review on code provided below:
Which type of defect should you report as part of the code review?
Why might static analysis be used on an Agile project'
SELECT ONE OPTION
Which of the following best describes the reason why poorly written code is usually more difficult to maintain than well written code?