Answer:
For setting up workstations in classrooms, one end of cables connected into the built in NIC and other end will be connected to a drop.
Explanation:
A drop will be used for connectivity in this case, which will work as connection point in a network. Drops are just like outlets in wall having Ethernet Jacks where a network device or system can be plugged into it.
Answer:
oh no thanks not good
Explanation:
did you try it on a different device mabye a phone
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.
This is configured on the BIOS Setup. During computer start-up usually for windows system this can be accessed via pressing on ESC or Function keys on immediate start up.
Answer:
<em> where the attacker secretly relays and possibly alters the communications between two parties who believe that they are directly communicating with each other.</em>
Explanation: