answersLogoWhite

0


Best Answer

A condition.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is made up of two values and relational operator?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Made up of two values and a relational operator in excel?

It could be an equation or an expression or a condition.


Made up of two values and a relational operator?

Sounds like a Boolean expression: I'm outside AND getting wet > it's raining.


What type of operator can be used to determine wheter a specific relationship exists between two values?

Relational Operators


Difference between relational and logical operators?

Logical operators don't Compare values they combine Boolean values and produce a Boolean result. Examples of logical operators are && (and), , (or), ! (not). If you have two Boolean values and you combined them with the && operator the result will be (TRUE) only if both values were (TRUE). Relational operators compare two values and produce a Boolean result. Most of the time we use logical operators to combine the results of two or more comparison expressions that use relational operators.


What is relational operator in c?

Relational operators are those operators which shows relation between two operands. e.g. ==, <=,>=,<,>


What is operator in php?

An operator merges two different values and outputs a new expression based on the inputted values.


What is operator in java?

An operator is a symbol that does something in Java. for ex: "+" is an arithmetic operator that adds two numbers. ">" is a logical operator that checks if one number is greater than the other. There are many different types of operators in Java like Arithmetic, Logical, Relational and Assignment operators


Which part of a relational database contains the logical structure for the information?

The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.The tables do. There must be at least two of them for a relational database.


What Is a symbol that indicates the relationship between two values in excel?

comparison operator


How do you compare two numbers without using any operators in c?

You cannot compare 2 numbers without using relational operators. Certainly, you could subtract them, but you still need to test the result, and that is a relational operator in itself.


What is the function of symboland in C programming?

The symbol and (ampersand, &) in C and C++ programming is the bitwise inclusive or operator. If there are two ampersands (&&) it is a relational inclusive or operator. As a unary operator, it means to take the address of something. In C++, it can also be overridden in a class method to mean nearly anything else.


Explain the Difference between bitwise operator ' and ' and address operator ' and ' of pointer?

The bitwise logical operator and (&) calculates the bitwise logical and of two integral values. It is a binary operator.The address of (&) operator returns the address of the value to its right. It is a unary operator.The distinction between the two is one of context. The logical and operator will follow (and be preceeded by) a value, while the address of operator will follow an operator.