Answer:
Suppliers
Explanation:
There are <em>FOUR </em>distinct groups of Advertising namely:
- The Advertisers
- The Advertising Agencies
- The Suppliers
- Media
1.The Advertisers : clients
2.The Advertising Agencies: The companies that prepare promotional
materials.
3.The Suppliers: Includes photographers, graphic designers, video recording
specialists.
4.Media: launches the promotional/advertising campaigns in pursuit to reach
the target audience.
Answer:
b-Nested Loops
Explanation:
To create a 1-D array we use single loop.For example:-
int a[10];
for(int i=0;i<10;i++)
{
cin>>a[i];
}
Taking input of a 1-D array.
For creating a 2-D array we use nested loops.
int a[row][column];
for(int i=0;i<row;i++)
{
for(int j=0;j<column;j++)
{
cin>>a[i][j];
}
}
Hence the answer for this question is nested loops.
Answer:
40, 5 and 3
See explaination for the details
Explanation:
A)
Consider the data.
Assume D-cache is empty
An integer size =4bytes
The cache block size =4bytes
Therefore, the number of D-cache misses for reading the first 40 integers is,
= (40×4)/4
= 160/4
= 40
b)
Consider the data.
Assume D-cache is empty
An integer size =4bytes
The cache block size =32bytes
Therefore, the number of D-cache misses for reading the first 40 integers is,
= (40×4)/32
= 160/32
= 5
c)
Consider the data.
Assume D-cache is empty
An integer size =4bytes
The cache block size =64bytes
Therefore, the number of D-cache misses for reading the first 40 integers is,
= (40×4)/64
= 160/64
= 3
Answer:
developer tool
Explanation:
if you're using chrome click on the 3 dots that's in the top right corner and go to tools, you will see "developer tools" and click on that, then you will see an icon that shows a laptop/computer and an iphone click on that and you can even choose the type of phone you wish to see the view of (ex. iphone X), refresh the page and you will be able to see the direct message icon and you will be able to message your friend.
good luck.