Operators "A4" 1 / 50 Arithmetic operators की associativity? Right to left Left to right None Depends 2 / 50 Assignment operator की associativity? Left to right Right to left Both None 3 / 50 Associativity का अर्थ? Speed Direction of evaluation Memory Type 4 / 50 Lowest precedence operator? = ++ * () 5 / 50 Highest precedence operator? + * () = 6 / 50 pointer operator? 7 / 50 address operator कौन-सा है? * & # @ 8 / 50 comma operator (,) का उपयोग? Separate statements Multiple expressions Loop Function 9 / 50 sizeof(int) result क्या देता है? Type Value Address Size in bytes 10 / 50 sizeof operator किस category में? Arithmetic Logical Special Bitwise 11 / 50 a>b ? a : b का अर्थ? Minimum Maximum Average Error 12 / 50 a>b ? a : b का अर्थ? Minimum Maximum Average Error 13 / 50 Conditional operator का उपयोग? Loop Short decision Memory Function 14 / 50 Syntax सही है? a ? b : c a : b ? c a ? b ? c Error 15 / 50 Conditional operator का symbol? ?: :: => ?? 16 / 50 Conditional operator को क्या कहते हैं? Unary Binary Ternary Logical 17 / 50 Shift operator का उपयोग? Decimal calculation Bit manipulation String handling Loop control 18 / 50 8 >> 1 का result? 16 8 4 2 19 / 50 4 << 1 का result? 2 4 8 16 20 / 50 Right shift operator? >> << <<< >>> 21 / 50 Left shift operator? >> << <<< >>> 22 / 50 5 & 3 का result? 1 2 3 5 23 / 50 Bitwise NOT operator? ! ~ ^ % 24 / 50 XOR operator? & | ^ ! 25 / 50 Bitwise OR operator? | || & ^ 26 / 50 Bitwise AND operator? && & || | 27 / 50 a /= b का अर्थ? a = a * b a = b / a a = a / b Error 28 / 50 Compound assignment operator कौन-सा है? = == += >= 29 / 50 a = b का अर्थ? a = a * b a + b * b a = a + b Error 30 / 50 a += 5 का अर्थ? a = 5 a = a + 5 a = a - 5 Error 31 / 50 Assignment operator कौन-सा है? == = <= != 32 / 50 Logical operators का उपयोग किसमें होता है? File handling Loop Decision making Memory 33 / 50 (5 > 2 && 3 < 1) का result? 0 Error Undefined 1 34 / 50 Logical NOT operator? ~ ! ^ % 35 / 50 Logical OR operator? | || & ! 36 / 50 Logical AND operator कौन-सा है? || & && | 37 / 50 a != b का अर्थ? Equal Greater Not equal Less 38 / 50 a == b का अर्थ? Decrement Assignment Comparison Increment 39 / 50 False condition C में? false 0 -1 1 40 / 50 True condition C में किससे represent होती है? yes true 1 0 41 / 50 Relational operator का result किस type का होता है? char int boolean float 42 / 50 ++i का effect कब होता है? After use Before use Runtime error None 43 / 50 i++ का effect कब होता है? Runtime only Before use After use Compile time 44 / 50 i = 5; j = ++i; j की value? 5 4 6 Error 45 / 50 i = 5; j = i++; j की value? Garbage 6 5 4 46 / 50 ++i को क्या कहते हैं? Pre increment Post increment Post decrement Pre decrement 47 / 50 5 % 2 का result? 2 1 0 2.5 48 / 50 Modulus operator (%) किस data type पर काम नहीं करता? long int char float 49 / 50 a = 10 / 3; a की value क्या होगी? 3.33 3 4 Error 50 / 50 निम्न में से कौन arithmetic operator नहीं है? + - * && Your score isThe average score is 0% 0% Restart quiz