Answer:
presentation
Explanation:
Based on the scenario being described within the question it can be said that we have to be careful of our presentation so we do not date ourselves too badly. Presentation refers to the way we look, dress, and act. Such as the clothes and accessories we wear, the way we style our hair, etc. All done in order to look our best to others.
B (each column gets a caption)
Answer: Unified communication
Explanation: Unified communication is the communication technique in which merges various communication routines into a individual business.It works as the phone system which helps in increment of productivity in an organizational business.
The unifying of voice,data/information,video etc is done for optimizing and improving the business that also results in faster communication rates, secure communication etc.
Answer:
Open world exploration and inventory management
Explanation:
In the first Zelda game (NES) and Zelda ii (NES) there were very early open world mechanics along with inventory management.
Answer:
#import turtle
import turtle
# set screen
Screen = turtle.Turtle()
# decide colors
cir= ['red','green','blue','yellow','purple']
# decide pensize
turtle.pensize(4)
# Draw star pattern
turtle.penup()
turtle.setpos(-90,30)
turtle.pendown()
for i in range(5):
turtle.pencolor(cir[i])
turtle.forward(200)
turtle.right(144)
turtle.penup()
turtle.setpos(80,-140)
turtle.pendown()
# choose pen color
turtle.pencolor("Black")
# importing turtle module
import turtle
# number of sides
n = 10
# creating instance of turtle
pen = turtle.Turtle()
# loop to draw a side
for i in range(n):
# drawing side of
# length i*10
pen.forward(i * 10)
# changing direction of pen
# by 144 degree in clockwise
pen.right(144)
# closing the instance
turtle.done()
turtle.done()
Explanation: