Solved

Which of the Following Code Fragments Would Not Raise an Error

Question 80

Multiple Choice

Which of the following code fragments would not raise an error?


A) IF rec.state = 'VA' OR 'PA' THEN
A := b * .06;
ELSE
A := b * .04;
END IF;
B) IF rec.state = 'VA' OR rec.state = 'PA' THEN
A := b * .06;
ELSE
A := b * .04;
END IF;
C) IF rec.state = 'VA' OR rec.state = 'PA'
A := b * .06;
ELSE
A := b * .04;
END IF;
D) IF rec.state = 'VA' OR rec.state = 'PA' THEN
A := b * .06;
ELSE
A := b * .04;
END IF

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions