Answer:
A target audience is the demographic of people most likely to be interested in your product or service. For example if you own a plumbing company, the target audience is property owners, both commercial and residential.
The answer should be RAM = Random Access Memory
RAM memory is used to store current data while the computer is on. Bear in mind that after the computer is shutdown all data in RAM is lost.
The correct explanation of why Gary is wrong is that Ports are where connectors attach to destinations, not where data enter the network.
<h3>What is a port?</h3>
A port is physical part of the computer system where the external devices are connected using cables.
Therefore, it serves as an interface between the motherboard and an external device of the computer.
From Gary statement about ports, he is wrong because, Ports are where connectors attach to destinations, not where data enter the network.
Learn more about ports here:
brainly.com/question/4804932
#SPJ1
Answer:
The correct option for accessing the value in sarray[3] is : d) *(sptr+3)
Explanation:
a) *sptr[*3] is wrong option because its syntax is not right it will give errors.
b) *sptr+3 is also wrong option because it will add 3 to the value of sarray[0].
c) sptr+3 is wrong option because it will only access the address of sarray[3] not the value it contains.
d) *(sptr +3) is correct syntax for accessing value in sarray[3] by using pointer