Answer:
A is the answer: Mobile marketing, Social media marketing and direct mail marketing
Explanation:
Option A is most likely correct because it is an intersection of both direct and digital marketing.
Option B is not the answer as direct response television marketing is listed
Option C is not the answer because online marketing and social media marketing belong to digital marketing while telemarketing belong the direct marketing
Option D is also not the answer as it just list the general category of marketing tools
Option E look like a good option but among the listed forms Social media marketing belong to digital marketing while telemarketing and kiosk marketing belong to digital marketing.
Answer:
l = []
while True:
no = int(input())
if no>0:
l.append(no)
else:
break
print(1)
If this helped consider marking this answer as brainliest. Have a good day.
<span>The encapsulation unit on the presentation layer of the OSI model is the Data link layer (2).</span>
Answer:
Option B is the correct answer.
Explanation:
- In the above code, the loop will execute only one time because the loop condition is false and it is the Do-While loop and the property of the Do-while loop is to execute on a single time if the loop condition is false.
- Then the statement "x*=20;" will execute one and gives the result 200 for x variable because this statement means "x=x*20".
- SO the 200 is the answer for the X variable which is described above and it is stated from option B. Hence it is the correct option while the other is not because--
- Option A states that the value is 10 but the value is 200.
- Option C states that this is an infinite loop but the loop is executed one time.
- Option D states that the loop will not be executed but the loop is executed one time