Answer:
The answer to this question is given below in the explanation section.
Explanation:
In this question, the given code is :
<em>def divide(numA,numB):</em>
<em> quotient = numA/numB</em>
<em> return quotient</em>
<em>#the main part of your program that calls the function</em>
<em>numC=40</em>
<em>numD=5</em>
<em>answer=divide(numC,numD)</em>
<em>print("Quotient", answer)</em>
<em>print (numA) </em>
The variable numA scope is local to divide function.
Because you can not access this variable outside of the divide function. All other variables such as numB and quotient also local variables of the divide function. These variables can not be accessible outside the divide function.
Answer:
C: An individual who diagnoses and resolves users' technical hardware and software problems
Answer:
If you're given a set of coordinates that Gracie has travelled to, you can find the farthest in each direction with something like this (I'll use pseudocode in lieu of a specified language):
left = right = top = bottom = null
for each location traveled{
if left == null or location.x < left {
left = location.x
}
if right == null or location.x > right {
right = location.x
}
// note that I'm assuming that the vertical position increases going downward
if top == null or location.y < top {
top = location.y
}
if bottom == null or location.y > bottom {
bottom = location.y
}
}
As for the four print statements and other information, insufficient information is provided to complete that.
Answer:
<h2>This is Phishing attack</h2>
Explanation:
What is Phishing attack?
Phishing attack involves sending of sending of unwanted spam mails, well disguised mails to potential victims, it was designed to steal the potential victim's information such as passwords and mails to his/her banking platform.
The goal is to deceive victims into clicking on a link and taking them to a website that asks for their login and password, or perhaps their credit card or ATM number.
People who attack using phishing are called <em>cyber attackers</em>