answersLogoWhite

0

Fertilizer

:)

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Engineering

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)


What was patricia bath's most important contribution?

her best contribution was science


What is the difference between net contribution to net profit?

net contribution is contribution from customers while net profit is from all expenses deducted


What is a comparative operator?

Comparative operators are used to compare the logical value of one object with another and thus establish the rank (ordering) of those objects. There are six comparative operators in total: p&lt;q : evaluates true when p is less than q p&gt;q : evaluates true when p is greater than q p&lt;=q : evaluates true when p is less than or equal to q p&gt;=q : evaluates true when p is greater than or equal to q p!=q : evaluates true when p is not equal to q p==q : evaluates true when p is equal to q


Q squared plus 20 q plus c?

I'm not exactly sure what you mean by this, but if you'd like to know how to do this in C here: q ^ 2 + 20 q + c