Answer:
Using python programming language.
Explanation:
#to define the function write as below
def equal():
#to get the two integers from the user
#The user is asked for input in the code below.
x = int(input("Enter the value for X"))
y= int(input("Enter the value for y"))
if x==0 and y==0:
print("both numbers are ", "0")
elif: x==1 and y==1: #This test if both x and y are 1
print("true")
elif: x==y: #this line test if both values are equal
print("true")
else:
print("False")
equal() #end of the function
Answer:
D. Think-Feel-Do Model
Explanation:
The Think-Feel-Do Model or simply just TFD model is a marketing model used by marketers to engage their target customers.
THINK - Involves the marketers having an insights into the target customer's needs that are important.
FEEL - Understanding the target customers basic drive. It involves inbound and outbound marketing communications.
DO - This involves the creation of marketing materials to be used in targeting the target customers for the products/services.
Explanation:
A computer is an <em>electronic</em> device
Answer:
<u>Identify assets and their values</u>
Explanation:
As a security analyst, the first step to determine the potential security threat is to understand
- what kind of assets needs to be protected?
- what is the value of such assets?
This error occurs when the number of arguments sent to the function are not equal ( greater or less ) to the parameters of the function.
For example:
// if the function is
void a_function(int a, int b){
// does some computations
}
// Now when i will call it as
a_function(3);
// Same error as you are getting will occur because the function expects 2 //argements and i am passing one.
Same will happen if i will call it as:
a_function (1,2,3);
Here i am passing one extra argument.
So, i will suggest to count the left function parameters and the arguments you are passing here in this function and you will find the mistake.