Ask Question
29 May, 12: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. 29 May, 15:31
    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?
Find 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 you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers