Answer:
Creates order and harmony → <em>color</em>
Creates an emotional impact → <em>texture</em>
Brings a feeling of depth to a design →<em> form</em>
Draws or minimizes attention → <em>space</em>
Divides space and redirects the eye → <em>shape</em>
Explanation:
The visual element that creates order and harmony is <em>color</em>
Color can be used to create visible patterns that can be recognized as being in harmony or disagreement
The visual element that creates emotional impact is <em>texture</em>
Texture can be used to convey either the emotions of the object or the artist
The visual element that brings a feeling of depth to a design is<em> form</em>
Form is used to present a 3-D appearance of an art, and therefore, it is used to show depth of a 2-D drawing
The visual element that draws or minimizes attention is <em>space</em>
The arrangement, location, and size of the space occupied by an object can be used to draw or minimize attention
The visual element that divides space and redirects the eye is <em>shape</em>
Shape is used to divide space into areas easily recognizable by the eye
Answer:
Dear
<h3>You should wear something professional. A tie, suit, classy dress, heels. You are more likely to be hired if you make it look like you take pride in your appearance. Also, depending on what kind of job you are applying for, the outfits can vary as well.</h3>
Explanation:
Black is too formal for interviews, and earth tones are too casual. Two-button suits are the professional standard.
Answer:
#here is code in python.
#read number of shares
num_share = int(input("Enter number of shares:"))
#read purchase price
buy_p = float(input("Enter purchase price:"))
#read sell price
sell_p = float(input("Enter sale price:"))
#total buying cost
buy_cost=buy_p*1.03*num_share
#total selling cost
sell_cost=sell_p*0.97*num_share
#if net profit
if(sell_cost>buy_cost):
print("After the transaction, you made " +str(sell_cost-buy_cost)+ " dollars.")
#if net loss
else:
print("After the transaction, you lost " +str(buy_cost-sell_cost)+ " dollars.")
Explanation:
Read the total number of shares from user.Then read buying price of a share and selling price of a share.Then calculate total buying cost including commission.Calculate total selling cost excluding the commission.If total buying cost is greater than total selling cost the print the profit else print the loss in the transaction.
Output:
Enter number of shares:10
Enter purchase price:10
Enter sale price:10
After the transaction, you lost 6.0 dollars.
Explanation:
noooooooooooooooooooooooooooooooooo