Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

In C, trigonometric functions require the argument to be in radians. True False

ID: 3854653 • Letter: I

Question

In C, trigonometric functions require the argument to be in radians. True False In C, the modulus operator (%) is used to compute: the remainder of integer division floating-point division integer division the remainder of floating-point division Select the unary operators. (type) -- ++ + In a declaration, the variable and the data type are separated by: a space a semicolon a colon a period In a scanf() statement in C, the address operator (&) is used to indicate where in memory the input value will be stored.

Explanation / Answer

Q15) true

Reason:we have to pass the value in terms of radians to a trigonometric function in c language.

Q16)the remainder of the integer division

Reason:

% results the remainder of integer division.

Where as / results coefficient of integer division.

Q17)++

Reason:

Unary operator: An operator act on a single operand is called unary operator

This operator increment the value of the variable by 1.

Q18)a space.

Reason: we have to provide the space between data type and the variable during declaration.

Ex: int a;

_______________Thank You