Ask Question
3 June, 15:48

Which statement is false? Question 10 options: A) In algebra, we write ab to multiply a times b. B) In C, we write ab to multiply a times b. C) In C, the remainder operator is %. D) In C, integer division yields an integer result.

+1
Answers (1)
  1. 3 June, 17:56
    0
    (A) True

    (B) False

    (C) True

    (D) True

    Step-by-step explanation:

    The operators used to do mathematical calculation in C are:

    Addition: " + "

    Subtraction: " - "

    Multiplication: " * "

    Division: " / "

    Remainder: " % "

    In C language, when an integer is divided by an integer the result is also an integer.

    For instance, on dividing 8 by 3 on a simple calculator the result is 2.66667.

    But when this is performed in C the result of dividing 8 by 3 is 2.

    This implies that an integer division yields an integer result.

    (A)

    The algebraic multiplication of a and b is simply written as ab.

    Thus, this statement is TRUE.

    (B)

    The multiplication of a and b in C language is written as a * b.

    Thus, this statement is FALSE.

    (C)

    The remainder operator used in C language is %.

    Thus, this statement is TRUE.

    (D)

    On dividing an integer by an integer in C language result in an integer.

    Thus, this statement is TRUE.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which statement is false? Question 10 options: A) In algebra, we write ab to multiply a times b. B) In C, we write ab to multiply a times ...” in 📙 Mathematics if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers