Q5Single correct5 Marks24 Dec 2023
The following pseudocode is executed using the 'Shopping Bills' dataset. The variable count counts the number of bills which are either from Big Bazaar or have a total bill amount of more than Rs. 500, but not both. Choose the correct code fragment to complete the pseudocode.
```
count = 0
while(Table 1 has more rows){
Read the first row X in Table 1
if(checkValue(X)){
count = count + 1
}
Move X to table 2
}
Procedure checkValue(Y)
A = false, B = false
if(Y.ShopName == "BigBazaar"){
A = true
}
if(Y.TotalBillAmount > 500){
B = true
}
***********************************
* Fill the code *
***********************************
End checkValue
```