The MidCity Shopping Centre sells gift vouchers that can be used at any shop in the shopping centre - NSC Information Technology - Question 3 - 2021 - Paper 1
Question 3
The MidCity Shopping Centre sells gift vouchers that can be used at any shop in the shopping centre. The minimum amount available per gift voucher card is R50 and th... show full transcript
Worked Solution & Example Answer:The MidCity Shopping Centre sells gift vouchers that can be used at any shop in the shopping centre - NSC Information Technology - Question 3 - 2021 - Paper 1
Step 1
3.1 - Purchase gift voucher
96%
114 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
Extract the gift voucher number from the component edt03_VoucherNum.
Extract the name of the customer from the component edt03_2_1.
Extract the amount from the component cmb03_2_1.
Instantiate a new objGiftVoucher object using the extracted values:
objGiftVoucher = new GiftVoucher(voucherNumber, customerName, amount);
Display the details of the gift voucher using toString method in the output area red03_2_1:
red03_2_1.setText(objGiftVoucher.toString());
Step 2
3.2.2 - Button [Display balance]
99%
104 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
Retrieve the gift voucher number from edt03_VoucherNum.
Check if the gift voucher number matches the existing voucher's number:
if (objGiftVoucher.getVoucherNumber() == enteredVoucherNum) {
Use the getBalance method to retrieve and display the balance in panel pnl03_2_2: