answersLogoWhite

0

Does X and Y define a statement?

Updated: 11/3/2022
User Avatar

Wiki User

12y ago

Best Answer

The answer depends on what X and Y are.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Does X and Y define a statement?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is y equals 4x a function?

y = 4x is a formula or open statement. It can be used to define the function, f = [(x,y) : y = 4x} , commonly denoted by f(x) = 4x.


If X Y in Y z which statement must be true?

If x y and y z, which statement is true


How do you find and return the minimum and maximum of two values using macrosand ternary operator?

#define MIN(x,y) ((x<y)?x:y) #define MAX(x,y) ((x>y)?x:y)


What is the converse of the statement below X - y?

y -> x


If x is y and y is z which statement must be be true?

If x = y and y = z then x = z


What are two components used to define motion?

x-axis and y-axis (x,y)


Is double 200 percent?

No, 50 is double of 25 so....if X = 50 Y = 25 X - Y = 25 25 / Y = 1 1 * 100 = 100% 100% is double. -------------------------------------------------------------------------------------------------------------------------------------------------- X = 50 Y = 25 X/Y = 2 X = 2 x Y <------- statement 1 X/Y = 2 X/Y = 2 x 100% = 200% X = 200% of Y <------ statement 2 By statement 1 & 2, 200% is equivalent to double.


What is the inverse to the statement x equals y?

x=y is the identity. It is its own inverse. So the inverse is y=x.


What is the negation of this statement x plus y equals 10?

x+y does not equal 10, which can be written x+y ~= 10 or x+y != 10.


Write a c program that will exchange the values of x and y after the statement executed x is equal to y and y is equal to x?

what is a program x and y


what is the buconditional statement for “ if x is even and y is odd, then the sum of x and y is odd “?

x is odd


What is return keyword in c?

return lets you literally return a value from a function. This allows you to define functions like: int add(int x, int y) { return(x + y); } int twoplustwo = add(2, 2);