Answer:
The only element visible is the presentation itself.
Explanation:
All of the other options, such as presenter's assistance, is hidden away from the projector, presentation device, etc. You are the only one that can see the window that shows what slide is next, presenter's notes, etc. <u>In other words, whatever you want the audience to see, that is only what they will see and nothing else.</u>
<span>It is generally a good idea to set the font size to at least 30 points in presentations </span><span>to ensure readability even from a distance.</span>
Answer:
b. cart total + 1
Explanation:
A. cart total=1 do increment the total with every 1 click here, it only 're-assigns cart total with value 1 for every click, hence it's always 1.
B. In every click, 1 is always added to the previous value of cart total, like addItemButton(cart total+1) or so.
C. This would have worked too if "cart total" and "cartTotal" where of same type.
D. cart total is just being initially defined here.
E. Likewise here, var shows that cart total has just only been declared.
Answer:
The answer to the above questions is given in explanation section:
Explanation:
abstraction hides the details about a specific piece of information.
The suitable match for this is Data
Because the word "Piece of information " can only be referred to data not to process.
Now look at the second
abstraction hides the details about a specific process
The suitable match here is procedural.
because specific process can only be referred to procedure not to data.