Quadratic Equation Solutions
Quadratic Equation Solutions

Quadratic Equation Solutions

Quadratic Equation Solutions Que. 1. Find the nature of the roots of the following quadratic equations. If roots exist then find them: 1. 2x2 – 3x + 5 = 0 ax2 + bx + c = 0 a = 2   ,     b = -3,                c = 5 Nature of roots= b2 – 4ac                               = …

0 Comments
Quadratic Equation Solutions in Hindi
Quadratic Equation Solutions In Hindi

Quadratic Equation Solutions in Hindi

Quadratic Equation Solutions in Hindi Que. 1. निम्न द्विघात समीकरणों के मूलों की प्रकृति ज्ञात कीजिए। यदि मूलों का अस्तित्व हो तो उन्हें ज्ञात कीजिए : 2x2 – 3x + 5 = 0 ax2 + bx + c = 0 a = 2   ,     b = -3,                  c = 5 मूलों की प्रकृति = b2…

0 Comments
Accessing Array Elements in C++
Accessing Array Elements in C++

Accessing Array Elements in C++

Accessing Array Elements in C++ In the C++ programming language, user-defined array element data values ​​are accessed and managed from their storage location using the indexing operator []. Always remember that the starting index location of any stored C++ array element starts at 0 by default. This means that the first array element declared in…

0 Comments
Accessing array elements In Hindi
Accessing array elements In Hindi

Accessing array elements In Hindi

Accessing array elements In Hindi C++ प्रोग्रामिंग लैंग्वेज में यूजर डिफाइन ऐरे एलिमेंट्स डाटा वैल्यू को उनके स्टोरेज लोकेशन से इंडेक्सिंग ऑपरेटर [] का यूज़ करके एक्सेस और मैनेज किया जाता है। हमेशा याद रखे किसी भी स्टोर्ड C++ ऐरे एलिमेंट का स्टार्टिंग इंडेक्स लोकेशन डिफ़ॉल्ट 0 से स्टार्ट होता है, इसका मतलब है कि…

0 Comments
Quadratic equation Class 10th in Hindi
Quadratic equation Class 10th in hindi

Quadratic equation Class 10th in Hindi

Quadratic equation Class 10th in Hindi Que 1. गुणनखंड विधि से निम्न द्विघात समीकरणों के मूल ज्ञात कीजिए:. 1.  x2 – 3x – 10 = 0 x2 – 5x + 2x – 10 = 0 x (x – 5) + 2(x – 5) = 0 (x – 5)   (x + 2) = 0 X –…

0 Comments
Block scope in c++
Block scope in c++

Block scope in c++

Block scope in c++ In the C++ programming language, block scope is a significant portion or element of a function program, enclosed within a pair of curly braces { }. A user-defined function variable, object argument, or custom function parameter is defined within the block, and can be accessed and managed as needed. Remember, any…

0 Comments
Block scope c++ In Hindi
Block scope c++ In Hindi

Block scope c++ In Hindi

Block scope c++ In Hindi C++ प्रोग्रामिंग लैंग्वेज में ब्लॉक स्कोप किसी फंक्शन प्रोग्राम का वह इम्पोर्टेन्ट पोरशन या एलिमेंट होता है, जिसे एक कर्ली ब्रेसेज़ { } के पेअर में डिफाइन कर क्लोज किया जाता है. जिसमे कोई यूजर डिफाइन फंक्शन वेरिएबल, ऑब्जेक्ट आर्गुमेंट या कस्टम फ़ंक्शन पैरामीटर को डिफाइन किया जाता है, और…

0 Comments
Recursive Functions concept in C++
Recursive Functions concept in C++

Recursive Functions concept in C++

Recursive Functions concept in C++ A recursive function in the C++ programming language is a user-defined recursion function that automatically calls itself to solve a specific programming problem. Recursion is a powerful technique used in C++ and other programming languages. Recursion involves breaking a complex problem into smaller sub-problems or modules, and the custom-declared function…

0 Comments
Recursive function concepts c++ In Hindi
Recursive function concepts c++ In Hindi

Recursive function concepts c++ In Hindi

Recursive function concepts c++ In Hindi C++ प्रोग्रामिंग लैंग्वेज में रिकर्सिव फ़ंक्शन एक ऐसा यूजर डिफाइन रिकर्शन फ़ंक्शन है, जो किसी प्रोग्राम में डिक्लेअर रिकर्सिव फ़ंक्शन किसी स्पेसिफिक प्रोग्रामिंग प्रॉब्लम को डील और सॉल्व करने के लिए अपने आप को आटोमेटिक कॉल करता है। C++ और अन्य प्रोग्रामिंग लैंग्वेजेज में रिकर्सन यूज़ किया वाला एक…

0 Comments