Arithmetic Progressions in Hindi
Arithmetic Progressions in hindi

Arithmetic Progressions in Hindi

Arithmetic Progressions in Hindi महत्वपूर्ण बिंदु – AP – 2, 4, 6, 8, 10, 12 _ _ _ _ 100 AP – a1, a2, a3, a4 _ _ _ _ _ an a1  =  a  = पहला पद an  =  अंतिम पद n   =  पदों की संख्या सार्वअंतर (d) d =  a2 – a1  = …

0 Comments
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