Biology, asked by solankeeshivkishor, 5 months ago

प्र06 एम-एस एक्सेल में लॉजिकल आपरेटर AND को समझाइए।​

Answers

Answered by Anonymous
9

The logical AND operator (&&) returns true if both operands are true and returns false otherwise. The operands are implicitly converted to type bool before evaluation, and the result is of type bool. Logical AND has left-to-right associativity.

The operands to the logical AND operator don't need to have the same type, but they must have boolean, integral, or pointer type. The operands are commonly relational or equality expressions.

The first operand is completely evaluated and all side effects are completed before evaluation of the logical AND expression continues.

The second operand is evaluated only if the first operand evaluates to true (nonzero). This evaluation eliminates needless evaluation of the second operand when the logical AND expression is false. You can use this short-circuit evaluation to prevent null-pointer dereferencing,

If pch is null (0), the right side of the expression is never evaluated. This short-circuit evaluation makes the assignment through a null pointer impossible.

Operator keyword for &&

C++ specifies and as an alternative spelling for &&. In C, the alternative spelling is provided as a macro in the <iso646.h> header. In C++, the alternative spelling is a keyword; use of <iso646.h> or the C++ equivalent <ciso646> is deprecated. In Microsoft C++, the /permissive- or /Za compiler option is required to enable the alternative spelling.

❤Sweetheart❤

Attachments:
Answered by xXitzQueenofDpXx
6

Explanation:

अंकगणितीय ऑपरेटर (Arithmetic operator) MS Excel 2013 में अंकगणितीय ऑपरेटर का प्रयोग गणितीय कार्य करने के लिए किया जाता है जो निम्न प्रकार है ...

तुलनात्मक ऑपरेटर (Logical operator) ...

पाठ्य ऑपरेटर (Text operator) ...

संदर्भ ऑपरेटर (Reference operator)

xXitzQueenofDpXx

Similar questions