Answer:
It is general knowledge
Explanation:
What you covered is general knowledge and the entrance to computer science.
In many, many ways. Here's some things you can talk about:
•Previously we stored patient data by hand on paper. Now we use computers to store it. This is better because what if we accidentally lost/destroyed the papers or it burned down? With computers this risk is minimised.
•We can now diagnose patients with problems with much more precision thanks to advances like MRI scanning, CT scans, and X-rays. This means we can pinpoint problems rather than guess what’s wrong.
•Prescriptions for medicine can now be arranged online and delivered to your door in some areas, whereas previously you would have to walk in and get the medicine which could be time consuming.
•We now have phones to dial 911 for emergency ambulance services. This has revolutionised how quickly responders can respond to life threatening events.
There’s much more to talk about, but all of the points above are a sold start.
the second answer is correct
Is there a picture to go with it
Answer:
C. carTotal=carTotal + 1;
Explanation:
Option 'c' is the correct answer, because when some click on the "additembutton" the variable cartTotal should increment by 1. As jasmine want to track the record of no. of items in cart, each time customer will click "additembutton" the variable "cartTotal" increment by 1 and also update the value of that variable. e.g
If initially
cartTotal=0
When 1st time additembutton pressed
CartTotal = CartTotal + 1 ==> will make it as CartTotal=0+1 ==> CartTotal = 1
Now CartTotal=1;
When customer 2nd time press "additembutton"
CartTotal = CartTotal + 1 ==> will make it as CartTotal=1+1 ==> CartTotal = 2
This process will continue and update the cartTotal till the customer add items into the cart.