1. Question: Which of the following correctly shows the hierarchy of arithmetic operations in C?

    A
    / + * -

    B
    * - / +

    C
    + - / *

    D
    / * + -

    Note: Simply called as BODMAS (Bracket of Division, Multiplication, Addition and Subtraction). How Do I Remember ? BODMAS ! B - Brackets first O - Orders (ie Powers and Square Roots, etc.) DM - Division and Multiplication (left-to-right) AS - Addition and Subtraction (left-to-right)
    1. Report
  2. Question: Which of the following is the correct usage of conditional operators used in C?

    A
    a>b ? c=30 : c=40;

    B
    a>b ? c=30;

    C
    max = a>b ? a>c?a:c:b>c?b:c

    D
    return (a>b)?(a:b)

    Note: Option A: assignment statements are always return in paranthesis in the case of conditional operator. It should be a>b? (c=30):(c=40); Option B: it is syntatically wrong. Option D: syntatically wrong, it should be return (a>b)?(a:b) Option C: it uses nested conditional operator, this is logic for finding greatest number out of three numbers.
    1. Report
  3. Question: Which of the following is the correct order if calling functions in the below code? a = f1(23, 14) * f2(12/4) + f3();

    A
    f1, f2, f3

    B
    f3, f2, f1

    C
    Order may vary from compiler to compiler

    D
    None of above

    Note: Here, Multiplication will happen before the addition, but in which order the functions would be called is undefined. In an arithmetic expression the parenthesis tell the compiler which operands go with which operators but do not force the compiler to evaluate everything within the parenthesis first.
    1. Report
  4. Question: Which of the following are unary operators in C? 1. ! 2. sizeof 3. ~ 4. &&

    A
    1, 2

    B
    1, 3

    C
    2, 4

    D
    1, 2, 3

    Note: An operation with only one operand is called unary operation. Unary operators: ! Logical NOT operator. ~ bitwise NOT operator. sizeof Size-of operator. && Logical AND is a logical operator. Therefore, 1, 2, 3 are unary operators.
    1. Report
  5. Question: In which order do the following gets evaluated 1. Relational 2. Arithmetic 3. Logical 4. Assignment

    A
    2134

    B
    1234

    C
    4321

    D
    3214

    Note: 2. Arithmetic operators: *, /, %, +, - 1. Relational operators: >, <, >=, <=, ==, != 3. Logical operators : !, &&, || 4. Assignment operators: =
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd