Answer:
Here is the Python program:
stock_prices = input().split() #to take input and splits it into a list
for price in stock_prices: #iterates through stock_prices
print("$",price) #prints each value of stock_prices with a dollar sign
Explanation:
The program is well explained in the attached comments. I will explain the logic of the program with the help of an example:
Suppose the user enters the following input as stock_prices values
34.62 76.30 85.05
input() method is used to take input from user
split() method is used to split or break this input string and returns a list of strings as:
['34.62', '76.30', '85.05']
Now the statement for price in stock_prices: iterates through each item of the list and print("$",price) prints each value of list with a dollar sign on the output screen as:
$ 34.62
$ 76.30
$ 85.05
Answer:
data breach
Explanation:
A data breach is a security event in which a unauthorized person steals, copy, access or transfer personal or confidential data. A data breach is the deliberate or unintentional leak of sensitive data into an distrusted environment. When a perpetrator or cyber criminal effectively invades a data source and steals confidential information, a data breach happens. This can be achieved physically by manipulating a device or network to steal or hack local data. Data breach is being used to target companies mostly by remotely bypassing network security.Data breaches include financial and personal information, trade secrets of companies or intellectual property, files, confidential documents etc.
Option D
Firefighting is when network managers deal with network breakdowns and immediate problems instead of performing tasks according to a well laid out plan.
<h3><u>
Explanation:</u></h3>
Network management is a process of monitoring, operating and controlling the network. Various network managers spend most of their time firefighting- dealing with breakdowns and urgent problems.
If managers do not allocate enough time planning and organizing the network and networking staff, they are intended to be reactive rather than proactive in solving problems. A term that refers to reacting to network problems as they arise rather than relying on planned network management activity
Answer:
right -click
Explanation:
<h2><u>Fill in the blanks </u></h2>
It is important to <u>right - click</u> the line in the code editing window in the exact location where you want to insert a code snippet to produce the shortcut menu with the Insert Snippet command.