856 Question 856 EN + हिं GB The output of: bitset<4> a("1010"), b("1100"); cout<<(a^b); IN का आउटपुट: बिटसेट a("1010"), b("1100"); अदालत A 0110 0110 B 1110 1110 C 0010 0010 D 1000 1000 ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) 1010^1100=0110. व्याख्या (हिन्दी) 1010^1100=0110. 🎯 Exam Perspective Data Structures and Algorithms के इस प्रश्न को कई प्रतियोगी परीक्षाओं जैसे UPSC, SSC, Banking और Police भर्ती में repeat होते देखा गया है। Concept clarity के लिए explanation section जरूर पढ़ें। 🔗 Related Questions What is the output: struct A{int x; A(int x):x(x){} A(A... The output of: cout The output of: int x=10; auto f=[&x]()->int&{return x;}... 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
857 Question 857 EN + हिं GB What is the output: bitset<8> bs(42); cout< IN आउटपुट क्या है: बिटसेट बीएस(42); अदालत A 00101010 00101010 B 10101000 10101000 C 00110100 00110100 D Error गलती ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) 42 = 00101010 in 8-bit binary. व्याख्या (हिन्दी) 8-बिट बाइनरी में 42 = 00101010। 🎯 Exam Perspective यह सवाल Data Structures and Algorithms category का है, और Railway, SSC, Banking और Defence परीक्षाओं के exam pattern में इस तरह के questions common हैं। Answer choose करने के बाद दिया गया explanation जरूर पढ़ें। 🔗 Related Questions The output of: cout The output of: int arr[]={3,1,4,1,5}; cout The output of: int a=5,b=3; cout 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
858 Question 858 EN + हिं GB The output of: cout<(0xFF); IN का आउटपुट: कॉउट A 11111111 11111111 B 00000000 00000000 C 10101010 10101010 D 01010101 01010101 ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) 0xFF = 255 = all 8 bits set. व्याख्या (हिन्दी) 0xFF = 255 = सभी 8 बिट्स सेट। 🎯 Exam Perspective यह प्रश्न Data Structures and Algorithms की तैयारी करने वाले अभ्यर्थियों के लिए उपयोगी है। इस तरह के प्रश्न अक्सर SSC, Railway, Banking और State PCS जैसी परीक्षाओं में पूछे जाते रहे हैं, इसलिए concept और explanation दोनों को ध्यान से समझें, सिर्फ उत्तर याद न करें। 🔗 Related Questions What is the output: bitset bs(42); cout What is the output: int x=10; auto f=[=]()mutable->int&... The output of: class C{public:int operator()(int x){ret... 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
859 Question 859 EN + हिं GB The output of: vector v(5); generate(v.begin(),v.end(),[n=0]()mutable{return n++;} ); cout< IN का आउटपुट: वेक्टर v(5); generate(v.begin(),v.end(),[n=0]()mutable{return n++;} ); अदालत A 3 3 B 4 4 D Error गलती ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) generates 0,1,2,3,4; v[3]=3. व्याख्या (हिन्दी) 0,1,2,3,4 उत्पन्न करता है; वी[3]=3. 🎯 Exam Perspective Data Structures and Algorithms से जुड़ा यह सवाल उन students के लिए काम का है जो SSC CGL, IBPS, RRB और State-level परीक्षाओं की तैयारी कर रहे हैं। बेहतर होगा कि explanation पढ़कर concept clear करें, ताकि exam में similar प्रश्न आने पर confusion न हो। 🔗 Related Questions The output of: class C{public:int operator()(int x){ret... The output of: int x=0; function f=[&](int n){return n The output of: int x=10; auto f=[&x]()->int&{return x;}... 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
860 Question 860 EN + हिं GB The output of: int x=0; function f=[&](int n){return n<=0?x:(x+=n,f(n-1));}; cout< IN का आउटपुट: int x=0; फ़ंक्शन f=[&](int n){रिटर्न n A 15 15 B 5 5 C 10 10 D Error गलती ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) Recursive lambda via std::function: 5+4+3+2+1=15. व्याख्या (हिन्दी) std::function के माध्यम से पुनरावर्ती लैम्ब्डा: 5+4+3+2+1=15। 🎯 Exam Perspective UPSC, SSC, Banking और Police भर्ती जैसी परीक्षाओं में Data Structures and Algorithms से सवाल अक्सर पूछे जाते हैं। इसलिए सिर्फ answer रटने के बजाय, नीचे दी गई explanation को ध्यान से पढ़ें और concept समझें। 🔗 Related Questions The output of: int arr[]={3,1,4,1,5}; cout What is the output: int x=10; auto f=[=]()mutable->int&... What is currying in functional programming? 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
861 Question 861 EN + हिं GB What is the output: struct A{int x; A(int x):x(x){} A(A&&a):x(move(a.x)){cout<<"M";} }; A a(1); A b(move(a)); IN आउटपुट क्या है: struct A{int x; A(int x):x(x){} A(A&&a):x(move(a.x)){cout A M printed एम मुद्रित B No output उत्पादन नही C Error गलती D Undefined अपरिभाषित ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) Move constructor called; prints M. व्याख्या (हिन्दी) मूव कंस्ट्रक्टर को बुलाया गया; एम प्रिंट करता है 🎯 Exam Perspective अगर आप Railway, SSC, Banking और Defence परीक्षाओं की तैयारी कर रहे हैं, तो Data Structures and Algorithms का यह topic आपके लिए महत्वपूर्ण है। Exam में accuracy बढ़ाने के लिए हर सवाल की explanation जरूर पढ़ें। 🔗 Related Questions The output of: int x=0; function f=[&](int n){return n The output of: bitset a("1010"), b("1100"); cout What is currying in functional programming? 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
862 Question 862 EN + हिं GB What is the output: int x=10; auto f=[=]()mutable->int&{return x;}; f()=20; cout< IN आउटपुट क्या है: int x=10; ऑटो f=[=]()mutable->int&{return x;}; एफ()=20; अदालत A 20 20 B 10 10 C Error गलती D Undefined अपरिभाषित ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) Lambda captures by value; returning reference to copy; original x unchanged. व्याख्या (हिन्दी) लैम्ब्डा मूल्य के आधार पर कब्जा करता है; प्रतिलिपि का संदर्भ लौटाना; मूल x अपरिवर्तित. 🎯 Exam Perspective Data Structures and Algorithms के इस प्रश्न को कई प्रतियोगी परीक्षाओं जैसे SSC, Railway, Banking और State PCS में repeat होते देखा गया है। Concept clarity के लिए explanation section जरूर पढ़ें। 🔗 Related Questions The output of: bitset a("1010"), b("1100"); cout The output of: vector v={1,2,3,4,5}; rotate(v.begin(),v... What is the output: struct A{int x; A(int x):x(x){} A(A... 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
863 Question 863 EN + हिं GB The output of: int x=10; auto f=[&x]()->int&{return x;}; f()=20; cout< IN का आउटपुट: int x=10; ऑटो f=[&x]()->int&{return x;}; एफ()=20; अदालत A 10 10 B 20 20 C Error गलती D Undefined अपरिभाषित ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) Lambda captures x by reference; f()=20 modifies original x. व्याख्या (हिन्दी) लैम्ब्डा संदर्भ द्वारा x को कैप्चर करता है; f()=20 मूल x को संशोधित करता है। 🎯 Exam Perspective यह सवाल Data Structures and Algorithms category का है, और SSC CGL, IBPS, RRB और State-level परीक्षाओं के exam pattern में इस तरह के questions common हैं। Answer choose करने के बाद दिया गया explanation जरूर पढ़ें। 🔗 Related Questions What is the output: auto curry=[](int a){return [a](int... The output of: cout What is currying in functional programming? 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
864 Question 864 EN + हिं GB The output of: class C{public:int operator()(int x){return x*x;} }; C sq; cout< IN इसका आउटपुट: वर्ग C{सार्वजनिक:int ऑपरेटर()(int x){रिटर्न x*x;} }; सी वर्ग; अदालत A 2516 2516 B 254 254 C 25 16 25 16 D Error गलती ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) sq(5)=25; sq(2)=4; sq(4)=16; 25 then 16: 2516. व्याख्या (हिन्दी) वर्ग(5)=25; वर्ग(2)=4; वर्ग(4)=16; 25 फिर 16:2516. 🎯 Exam Perspective यह प्रश्न Data Structures and Algorithms की तैयारी करने वाले अभ्यर्थियों के लिए उपयोगी है। इस तरह के प्रश्न अक्सर UPSC, SSC, Banking और Police भर्ती जैसी परीक्षाओं में पूछे जाते रहे हैं, इसलिए concept और explanation दोनों को ध्यान से समझें, सिर्फ उत्तर याद न करें। 🔗 Related Questions What is the output: bitset bs(42); cout What is currying in functional programming? The output of: int a=5,b=3; cout 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
865 Question 865 EN + हिं GB What is the output: auto curry=[](int a){return [a](int b){return a+b;};};cout< IN आउटपुट क्या है: auto curry=[](int a){return [a](int b){return a+b;};};cout A 12 12 B 7 7 C 3 3 D 4 4 ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) curry(3) returns lambda that adds 3; called with 4: 3+4=7. व्याख्या (हिन्दी) करी(3) लैम्ब्डा लौटाता है जो 3 जोड़ता है; 4:3+4=7 के साथ बुलाया गया। 🎯 Exam Perspective Data Structures and Algorithms से जुड़ा यह सवाल उन students के लिए काम का है जो Railway, SSC, Banking और Defence परीक्षाओं की तैयारी कर रहे हैं। बेहतर होगा कि explanation पढ़कर concept clear करें, ताकि exam में similar प्रश्न आने पर confusion न हो। 🔗 Related Questions The output of: vector v={1,2,3,4,5}; rotate(v.begin(),v... The output of: cout The output of: int x=0; function f=[&](int n){return n 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
866 Question 866 EN + हिं Easy GB What is currying in functional programming? IN कार्यात्मक प्रोग्रामिंग में करींग क्या है? A Merging functions कार्यों का विलय B Transforming multi-argument function into sequence of single-argument functions बहु-तर्क फ़ंक्शन को एकल-तर्क कार्यों के अनुक्रम में बदलना C Recursion pattern प्रत्यावर्तन पैटर्न D Template pattern टेम्पलेट पैटर्न ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) Currying: f(a,b) becomes f(a)(b). व्याख्या (हिन्दी) करी: f(a,b) f(a)(b) बन जाता है। 🎯 Exam Perspective SSC, Railway, Banking और State PCS जैसी परीक्षाओं में Data Structures and Algorithms से सवाल अक्सर पूछे जाते हैं — difficulty level "Easy"। इसलिए सिर्फ answer रटने के बजाय, नीचे दी गई explanation को ध्यान से पढ़ें और concept समझें। 🔗 Related Questions What is the output: bitset bs(42); cout The output of: int a=5,b=3; cout The output of: int arr[]={3,1,4,1,5}; cout 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
867 Question 867 EN + हिं GB The output of: vector v={1,2,3,4,5}; auto it=partition(v.begin(),v.end(),[](int x){return x%2==0;}); cout< IN का आउटपुट: वेक्टर v={1,2,3,4,5}; ऑटो आईटी=विभाजन(v.begin(),v.end(),[](int x){रिटर्न x%2==0;}); अदालत A 2 2 B 3 3 C 4 4 D 5 5 ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) Even elements {2,4} moved to front; partition point at index 2. व्याख्या (हिन्दी) यहां तक कि तत्व {2,4} भी सामने चले गए; सूचकांक 2 पर विभाजन बिंदु। 🎯 Exam Perspective अगर आप SSC CGL, IBPS, RRB और State-level परीक्षाओं की तैयारी कर रहे हैं, तो Data Structures and Algorithms का यह topic आपके लिए महत्वपूर्ण है। Exam में accuracy बढ़ाने के लिए हर सवाल की explanation जरूर पढ़ें। 🔗 Related Questions The output of: vector v={1,2,3,4,5}; rotate(v.begin(),v... The output of: int arr[]={3,1,4,1,5}; cout What is the output: int x=10; auto f=[=]()mutable->int&... 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
868 Question 868 EN + हिं GB The output of: vector v={1,2,3,4,5}; rotate(v.begin(),v.begin()+3,v.end()); for(auto x:v)cout< IN का आउटपुट: वेक्टर v={1,2,3,4,5}; रोटेट(v.begin(),v.begin()+3,v.end()); for(ऑटो x:v)cout A 45123 45123 B 12345 12345 C 34512 34512 D 54321 54321 ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) Rotate left by 3: {4,5,1,2,3}. व्याख्या (हिन्दी) 3 से बाएँ घुमाएँ: {4,5,1,2,3}। 🎯 Exam Perspective Data Structures and Algorithms के इस प्रश्न को कई प्रतियोगी परीक्षाओं जैसे UPSC, SSC, Banking और Police भर्ती में repeat होते देखा गया है। Concept clarity के लिए explanation section जरूर पढ़ें। 🔗 Related Questions What is currying in functional programming? What is the output: struct A{int x; A(int x):x(x){} A(A... The output of: int x=0; function f=[&](int n){return n 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
869 Question 869 EN + हिं GB The output of: int arr[]={3,1,4,1,5}; cout<<*max_element(arr,arr+5)<<" "<<*min_element(arr,arr+5); IN इसका आउटपुट: int arr[]={3,1,4,1,5}; अदालत A 5 1 5 1 B 3 1 3 1 C 4 1 4 1 D Error गलती ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) Max=5, Min=1. व्याख्या (हिन्दी) अधिकतम=5, न्यूनतम=1. 🎯 Exam Perspective यह सवाल Data Structures and Algorithms category का है, और Railway, SSC, Banking और Defence परीक्षाओं के exam pattern में इस तरह के questions common हैं। Answer choose करने के बाद दिया गया explanation जरूर पढ़ें। 🔗 Related Questions The output of: vector v={1,2,3,4,5}; auto it=partition(... What is the output: int x=10; auto f=[=]()mutable->int&... The output of: class C{public:int operator()(int x){ret... 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)
870 Question 870 EN + हिं GB The output of: int a=5,b=3; cout< IN का आउटपुट: int a=5,b=3; अदालत A 15 15 B 8 8 C 2 2 D 5 5 ✅ Correct Answer: 💡 Explanation / व्याख्या Explanation (English) Values: 5,3,8,15,2; max=15. व्याख्या (हिन्दी) मान: 5,3,8,15,2; अधिकतम=15. 🎯 Exam Perspective यह प्रश्न Data Structures and Algorithms की तैयारी करने वाले अभ्यर्थियों के लिए उपयोगी है। इस तरह के प्रश्न अक्सर SSC, Railway, Banking और State PCS जैसी परीक्षाओं में पूछे जाते रहे हैं, इसलिए concept और explanation दोनों को ध्यान से समझें, सिर्फ उत्तर याद न करें। 🔗 Related Questions The output of: int x=10; auto f=[&x]()->int&{return x;}... The output of: class C{public:int operator()(int x){ret... What is the output: bitset bs(42); cout 📚 Related Topic Introduction to DSA (819) Arrays (16) Linked List (25)