the category id is only 2. However, the code is returning vegetables for all values except category id 1. Which of
the following code statements would BEST correct the issue?
A. If category id = 1 then 'Fruit'
Else 'Vegetables'
B. If category id = 1 then 'Fruit'
Else if category id = 2 then 'Vegetables'
Else 'Candy'
C. If category id <> 1 then 'Vegetables'
Else 'Fruit'
D. If category id = 1 then 'Fruit'
Else if category id >= 2 then 'Vegetables'
Else 'Candy'