Arithmetic Progressions
Arithmetic Progressions Key Points – AP – 2, 4, 6, 8, 10, 12 _ _ _ _ 100 AP – a1, a2, a3, a4,_ _ _ _ _ an a1 = a = First term an = Last term n = Number of terms Common difference (d) d = a2 – a1 = a3 –…
Arithmetic Progressions Key Points – AP – 2, 4, 6, 8, 10, 12 _ _ _ _ 100 AP – a1, a2, a3, a4,_ _ _ _ _ an a1 = a = First term an = Last term n = Number of terms Common difference (d) d = a2 – a1 = a3 –…
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 = …
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 = …
Quadratic Equation Solutions in Hindi Que. 1. निम्न द्विघात समीकरणों के मूलों की प्रकृति ज्ञात कीजिए। यदि मूलों का अस्तित्व हो तो उन्हें ज्ञात कीजिए : 2x2 – 3x + 5 = 0 ax2 + bx + c = 0 a = 2 , b = -3, c = 5 मूलों की प्रकृति = b2…
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…
Accessing array elements In Hindi C++ प्रोग्रामिंग लैंग्वेज में यूजर डिफाइन ऐरे एलिमेंट्स डाटा वैल्यू को उनके स्टोरेज लोकेशन से इंडेक्सिंग ऑपरेटर [] का यूज़ करके एक्सेस और मैनेज किया जाता है। हमेशा याद रखे किसी भी स्टोर्ड C++ ऐरे एलिमेंट का स्टार्टिंग इंडेक्स लोकेशन डिफ़ॉल्ट 0 से स्टार्ट होता है, इसका मतलब है कि…
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 –…
Quadratic equation Class 10th Que. 1. Find the roots of the following quadratic equations by factorization method: 1. x2 – 3x – 10 = 0 x2 – 5x + 2x – 10 = 0 x (x – 5) + 2(x – 5) = 0 (x – 5) (x + 2) = 0 X – 5…
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…
Block scope c++ In Hindi C++ प्रोग्रामिंग लैंग्वेज में ब्लॉक स्कोप किसी फंक्शन प्रोग्राम का वह इम्पोर्टेन्ट पोरशन या एलिमेंट होता है, जिसे एक कर्ली ब्रेसेज़ { } के पेअर में डिफाइन कर क्लोज किया जाता है. जिसमे कोई यूजर डिफाइन फंक्शन वेरिएबल, ऑब्जेक्ट आर्गुमेंट या कस्टम फ़ंक्शन पैरामीटर को डिफाइन किया जाता है, और…