JS Operators "A2" 1 / 50 किस operator से default value मिलती है? && || ?? ?: 2 / 50 JavaScript में typeof operator किस type का है? unary ternary binary none 3 / 50 typeof “” ? null string undefined empty 4 / 50 Which operator concatenates arrays? कोई नहीं || && + 5 / 50 Bitwise XOR symbol? ex-or x^ ^^ ^ 6 / 50 i++ क्या करता है? error कभी return नहीं पहले return फिर increment पहले increment 7 / 50 “++i” क्या करता है? पहले increment फिर return कोई फर्क नहीं पहले return फिर increment error 8 / 50 “void” operator क्या return करता है? boolean null undefined number 9 / 50 कौन सा operator दो values में से बड़ी value चुनता है? > < >= दोनों A और C 10 / 50 typeof function(){}? special string function object 11 / 50 5 < “x”? false NaN true error 12 / 50 5 > “4”? true false 13 / 50 5 ** 2 का result? 5 25 7 10 14 / 50 Assignment operator कौन सा नहीं है? *= += == = 15 / 50 typeof null? string object undefined null 16 / 50 कौन सा operator truthy values immediately return करता है? ! && ?? || 17 / 50 कौन सा operator falsy values immediately return करता है? ** ?? && || 18 / 50 0 === false? true false 19 / 50 0 == false? true false 20 / 50 “typeof []” क्या देगा? structure list object array 21 / 50 Short-circuiting किस operator में होता है? ** && % + 22 / 50 “??” operator क्या return करता है? पहला truthy पहला falsy पहला non-nullish undefined 23 / 50 typeof undefined? boolean null undefined object 24 / 50 “in” operator किसके लिए है? array delete property check number compare loop चलाने 25 / 50 Bitwise OR का symbol? & OR || | 26 / 50 typeof NaN क्या देता है? undefined number NaN null 27 / 50 Logical NOT (!!) का use? number convert String reverse none Boolean convert 28 / 50 “delete” operator किस पर लागू होता है? operators functions objects की properties variables 29 / 50 Which operator checks only type? instanceof typeof == ??? 30 / 50 10 === “10”? true false 31 / 50 10 == “10”? true false 32 / 50 JavaScript में exponent operator कौन सा है? ^ ** ^^ exp 33 / 50 5 - “2” का result? error 3 undefined “52” 34 / 50 5 + “5” का result? undefined “55” error 10 35 / 50 “!” operator क्या करता है? Join Number convert Compare Boolean invert 36 / 50 Which operator has highest precedence? + () * && 37 / 50 किस operator से string को number में बदल सकते हैं? + - * = 38 / 50 JavaScript % operator क्या करता है? divide remainder निकालता है percentage power निकालता है 39 / 50 “!==” operator क्या check करता है? strict equal value + type not equal type value 40 / 50 Unary operator कौन है? ++ -- typeof सभी 41 / 50 “==” operator किस type की comparison करता है? Bitwise Boolean Loose Strict 42 / 50 “===” operator क्या check करता है? केवल value केवल type value + type दोनों None 43 / 50 JavaScript में “+” operator string के साथ क्या करता है? Add numbers Concatenate strings Multiply Compare 44 / 50 Unary operator कौन है? ++ -- typeof सभी 45 / 50 Nullish Coalescing operator कौन सा है? && ?? || ?: 46 / 50 Logical OR का symbol? || | && !! 47 / 50 Logical AND का symbol? & && @ || 48 / 50 Bitwise AND का symbol क्या है? & && AND ^ 49 / 50 “==” operator किस type की comparison करता है? Strict Loose Boolean Bitwise 50 / 50 “===” operator क्या check करता है? A) केवल value केवल type value + type दोनों None Your score isThe average score is 0% 0% Restart quiz