answersLogoWhite

0


Best Answer

A boolean is an expression obtained in relational operators.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What type of expression is obtained in relational operators?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What are relational and assignment operators?

Is there a specific language that you're after? The list may vary between them, but I'll try to include them all. = (Equal To - in BASIC) <> (Not Equal To - in BASIC) == (Equal Value - Conventional) === (Equal Value and Type - No implicit type conversion) != (Not Equal - Conventional) !== (Different Value or Type - No implicit type conversion) > (Greater Than) < (Less Than) >= (Greater Than or Equal To) <= (Less Than or Equal To) I believe some languages also use /= as a Not Equal operator.


What are the various operators available in c language?

There are eight types of operators which are used in C language.These are- 1.Arithmetic operator 2.Assignment operator 3.Relational operator 4.Increment/Decrement operator 5.Bitwise operator 6.Logical operator 7.Conditional operator 8.Additional operator 1.Arithmetic operator:Arithmetic operators are mathmetical operator.These are addition,Subtraction,Multiplication and divison. 2.Assignment operator:Assignment operators are used to store the result of an expression to a variable.


How are char -type constants and char-type variables interpreted when used as operands with a relational operator?

As integers, within range -128..127 if signed, 0..255 if unsigned.


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

The relational operators: ==, !=, =.p == q; // evaluates true if the value of p and q are equal, false otherwise.p != q; // evaluates true of the value of p and q are not equal, false otherwise.p < q; // evaluates true if the value of p is less than q, false otherwise.p q; // evaluates true if the value of p is greater than q, false otherwise.p >= q; // evaluates true of the value of p is greater than or equal to q, false otherwiseNote that all of these expressions can be expressed logically in terms of the less than operator alone:p == q is the same as NOT (p < q) AND NOT (q < p)p != q is the same as (p < q) OR (q < p)p < q is the same as p < q (obviously)p q is the same as (q < p)p >= q is the same as NOT (p < q)


When can't selection structures be represented in CASE?

When the case statement represents a non-constant expression or a non-integral type. The switch statement's expression must be of an integral type or of a type that can be unambiguously converted to an integral type.

Related questions

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

Relational Operators


What are different type's operators?

The different types of operators are as follows: *Arithmatic operator *Relational operator *Logical operator *Assignment operator *Increment/Decrement operator *Conditional operator *Bitwise operator *Special operator


What are relational and assignment operators?

Is there a specific language that you're after? The list may vary between them, but I'll try to include them all. = (Equal To - in BASIC) &lt;&gt; (Not Equal To - in BASIC) == (Equal Value - Conventional) === (Equal Value and Type - No implicit type conversion) != (Not Equal - Conventional) !== (Different Value or Type - No implicit type conversion) &gt; (Greater Than) &lt; (Less Than) &gt;= (Greater Than or Equal To) &lt;= (Less Than or Equal To) I believe some languages also use /= as a Not Equal operator.


Difference between database and relational database?

A database is a collection of data organized for easy access and manipulation, while a relational database is a type of database that stores data in a structured format using tables that are related to each other through keys. In a relational database, data is organized into rows and columns, and relationships between tables can be established using keys.


Is the relational database an example of oracle database?

A relational database is a type of database design. Oracle is a brand of database. You can create a relational database using Oracle. You can also create relational databases using other database applications.


Why do you use Linq over SQL Statements?

The extensibility of the query architecture is used in the LINQ project itself to provide implementations that work over both XML and SQL data. The query operators over XML (LINQ to XML) use an efficient, easy-to-use, in-memory XML facility to provide XPath/XQuery functionality in the host programming language. The query operators over relational data (LINQ to SQL) build on the integration of SQL-based schema definitions into the common language runtime (CLR) type system. This integration provides strong typing over relational data while retaining the expressive power of the relational model and the performance of query evaluation directly in the underlying store.


How do you search for information in a relational database?

type you thing you want to search into quires


What type of database is Oracle?

Oracle is Relational database management System(RDBMS).


What is a type of expression that contains a variable or variables?

An algebraic expression is a type of expression that contains a variable or variables.


Which database type would allow the widest variety of queries?

Answerpages591-599 ==A. Relational


Which type of database stores data in tables that consist of rows and columns?

Relational database stores data in tables that consist of rows and columns. Each row represents a record and each column represents a field within that record. Relationships between tables are established through keys.


What is the most common type of relationship between tables in a relational database?

one-to-many relationship