Back-End Programming Exam  >  Back-End Programming Videos  >  Learn to Program with C++: Beginner to Expert (in Hindi)  >  105. Example of Single Inheritance Public Mode in C++ (Hindi)

105. Example of Single Inheritance Public Mode in C++ (Hindi) Video Lecture | Learn to Program with C++: Beginner to Expert (in Hindi) - Back-End Programming

186 videos

FAQs on 105. Example of Single Inheritance Public Mode in C++ (Hindi) Video Lecture - Learn to Program with C++: Beginner to Expert (in Hindi) - Back-End Programming

1. क्या सी में Single Inheritance Public Mode का उदाहरण दें?
उत्तर: एक उदाहरण के रूप में, यदि हमारे पास एक बेस क्लास "वाहन" है और एक ड्राइवर क्लास "कार" है जो वाहन से विरासत में आता है, तो निम्नलिखित तरीके से सिंगल इन्हेरिटेंस पब्लिक मोड लागू किया जा सकता है: ```c #include <stdio.h> // Base class struct Vehicle { int numWheels; int fuelCapacity; }; // Derived class struct Car: public Vehicle { int numSeats; int topSpeed; }; int main() { // Create an object of derived class struct Car myCar; // Access base class members myCar.numWheels = 4; myCar.fuelCapacity = 50; // Access derived class members myCar.numSeats = 5; myCar.topSpeed = 200; return 0; } ```
2. क्या सी में सिंगल इन्हेरिटेंस पब्लिक मोड क्या है?
उत्तर: सिंगल इन्हेरिटेंस पब्लिक मोड में, एक ड्राइवन (विरासतग्रही) क्लास एक वाहन (बेस) क्लास से बनाई जाती है और यह वाहन क्लास के सभी सदस्यों और सदस्य फंक्शन को अपनाता है। इस मोड में, वाहन क्लास के सभी सदस्य और सदस्य फंक्शन ड्राइवन क्लास के लिए सार्वजनिक रहते हैं।
3. सिंगल इन्हेरिटेंस के लिए सी में क्या सिक्का इस्तेमाल होता है?
उत्तर: सिंगल इन्हेरिटेंस के लिए, सी में ":" या "public" की घोषणा इस्तेमाल होती है। यह घोषणा ड्राइवन क्लास को बेस क्लास के लिए सार्वजनिक बनाती है, जिससे ड्राइवन क्लास बेस क्लास के सदस्य और सदस्य फंक्शनों का उपयोग कर सके।
4. सिंगल इन्हेरिटेंस पब्लिक मोड के फायदे क्या हैं?
उत्तर: सिंगल इन्हेरिटेंस पब्लिक मोड के कुछ फायदे हैं: - ड्राइवन क्लास बेस क्लास के सदस्यों और सदस्य फंक्शनों का उपयोग कर सकता है, जिससे कोड का पुन: उपयोग किया जा सकता है और डुप्लिकेट कोड की आवश्यकता नहीं होती है। - ड्राइवन क्लास में बेस क्लास के सदस्यों और सदस्य फंक्शनों को ओवरराइड किया जा सकता है, यानी उन्हें अपनी जरूरतों के अनुसार बदला जा सकता है।
5. क्या सिंगल इन्हेरिटेंस पब्लिक मोड का उपयोग करना जरूरी है?
उत्तर: नहीं, सिंगल इन्हेरिटेंस पब्लिक मोड का उपयोग करना जरूरी नहीं है। यह उपयोग केवल उन स्थितियों में किया जाता है जहां ड्राइवन क्लास को बेस क्लास के सदस्यों और सदस्य फंक्शनों का उपयोग करने की आवश्यकता होती है, और यह ड्राइवन क्लास को बेस क्लास के सभी सदस्यों और सदस्य फंक्शनों का उपयोग करने की अनुमति देता है। अन्य स्थितियों में, अन्य इन्हेरिटेंस मोड जैसे प्राइवेट या प्रोटेक्टेड मोड का उपयोग किया जा सकता है।
186 videos
Explore Courses for Back-End Programming exam
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Summary

,

MCQs

,

105. Example of Single Inheritance Public Mode in C++ (Hindi) Video Lecture | Learn to Program with C++: Beginner to Expert (in Hindi) - Back-End Programming

,

past year papers

,

Viva Questions

,

105. Example of Single Inheritance Public Mode in C++ (Hindi) Video Lecture | Learn to Program with C++: Beginner to Expert (in Hindi) - Back-End Programming

,

ppt

,

study material

,

Important questions

,

video lectures

,

Exam

,

Objective type Questions

,

mock tests for examination

,

pdf

,

Extra Questions

,

Semester Notes

,

105. Example of Single Inheritance Public Mode in C++ (Hindi) Video Lecture | Learn to Program with C++: Beginner to Expert (in Hindi) - Back-End Programming

,

Sample Paper

,

shortcuts and tricks

,

Previous Year Questions with Solutions

,

practice quizzes

,

Free

;