Answer:
Page Layout is the correct answer of this question.
Explanation:
The Page Layout Tab includes most of the tools you need to organize your file pages only the direction we need them to. You can set borders, themes, monitor site alignment and scale, add sections and carriage returns, monitor line numbers, and adjust the protrusion and outlines for paragraphs.
On way to incorporate these enhancements is by using the Ribbon Borders, Font Shades, and Fill Color buttons in the Font section on the Page Layout tab.
A person responsible for running a business, organization, etc.
Answer:
d.Responsive Display ads
e.Uploaded ads (Image & AMPHTML)
Explanation:
The two main ad formats used in a Standard Display campaign are;
1. Responsive Display ads: they are Google's new default ad format and are automatically created by Google using assets provided by users in a square and landscape format.
2. Uploaded ads (Image & AMPHTML): they are created using a tool like Google Web Designer to create adverts outside of Google Ads.
They can be uploaded as a jpeg, gif, zip file and png extension into Google Ads.
Answer:
Check the explanation
Explanation:
arrow_base_height = int(input('Enter arrow base height:\n'))
arrow_base_width = int(input('Enter arrow base width:\n'))
arrow_head_width = arrow_base_width
while arrow_head_width <= arrow_base_width:
arrow_head_width = int(input('Enter arrow head width:\n'))
print()
for i in range(arrow_base_height):
for j in range(arrow_base_width):
print('*', end='')
print()
for i in range(arrow_head_width):
for j in range(arrow_head_width-i):
print('*', end='')
print()
Kindly check the code output below.