Answer:
Replace your solution goes here with the following:
def compute_avg(num1, num2):
func_name = "compute_avg()"
print("FIXME: "+func_name)
return -1
def get_user_num(user_num):
func_name = "get_user_num()"
print("FIXME: "+func_name)
return -1
Explanation:
This defines the compute_avg function
def compute_avg(num1, num2):
This sets the function name
func_name = "compute_avg()"
This prints the required output
print("FIXME: "+func_name)
This returns -1
return -1
This defines the get_user function
def get_user_num(user_num):
This sets the function name
func_name = "get_user_num()"
This prints the required output
print("FIXME: "+func_name)
This returns -1
return -1
<span>Think about a basic sandwich, you have a slice of bread, some filling, and another slice of bread. The sandwich technique of feedback is exactly the same way, a slice of bread (complement the person), the filling (what you'd like to have improve), and finally another slice of bread (another complement). So with that in mind, let's look at the available options.
1.
I really appreciate your attention to detail when stocking shelves;
however, you need to be a little bit faster when doing the stocking.
I also like how nice the shelves look when you are done working on them.
* This looks good, you have a complement about the attention to detail, afterwards you mention that you'd like the person to do their job faster, and you follow up with a complement about how nice the final result works. Bread, filling, bread. This looks like the correct answer.
2.
I really appreciate your attention to detail when stocking shelves;
however, you need to speed it up.
You need to be a little bit faster when stocking shelves.
* This starts off well with a complement about attention to detail. It then starts with some filling about the job being needed to be done faster. But if falls down with a second serving of the same filling. So you have bread, filling, filling. Not a sandwich, so this is incorrect.
3.
I do appreciate how nice the shelves look when you are done working on them, though.
You're really not too fast when you are doing the stocking.
* Another nice start with a complement. And you sort of have some filling (not sure if you're merely observing the lack of speed, or recommending more speed). But you still lack the 2nd piece of bread. So this isn't correct either.
4.
I really appreciate your attention to detail when stocking shelves, but it would be great if you could maybe speed it up.
* Once again, you correctly start off with a complement. And you follow up with the filling (what you want done better), but you're lacking the 2nd piece of bread. Not the right choice.
So of the 4 available choices, the best choice is the 1st option.</span>
Answer:
D. Misconfigurations
Explanation:
There are a large number of network security vulnerability with is a continuously increasing as technology evolves. Examples of the vulnerabilities are DOS attacks, reconnaissance attack, spyware, key logger, Malicious ware attacks etc.
There are good ways of mitigating these attacks, but sometime lack of vendor support of network devices and end of life systms, broadens the attacks.
Alyona would discuss option A - C, but not D (Misconfigurations) because it would only imply the capacity of the network team.
Answer:
The error is because you wrapped the input in float. First record the input and then modify it.
Explanation:
b = input("enter temp:")
b = float(b)