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.
Answer:A
Explanation: I took the test !
If this is a true or false statement then the answer is true unless you have it on automatic save
Answer:
True
Explanation:
Merge & Center is a feature in excel that combines multiple cells and centers the contents of the first cell. You can merge columns and rows too.
Answer:
C. <loc>
Explanation:
We need to mention the below details:
- location
- changed frequency
- last changed
- priority of page
We have the XML file for a sitemap, and we need to enter the above details for each of the Url. We need to enter the location, last changed, changed frequency and priority of the page for each of the URLs. And the URL of the home page is surrounded by the Loc tag. And hence, the correct option for this post is the C.<Loc> option.