answersLogoWhite

0

A condition.

User Avatar

Wiki User

12y ago

What else can I help you with?

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.


Which operator is used to check if two values are equal and of same data type?

The operator used to check if two values are equal and of the same data type is the strict equality operator, represented by ===. This operator not only compares the values but also ensures that they are of the same data type, making it more precise than the loose equality operator (==), which performs type coercion.


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.


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 a symbol that indicates the relationship between two values in excel?

comparison operator


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.