TechAxis
TechAxis
  • 96
  • 66 573
Public Inheritance & Access Modifiers | C++ Nepali Tutorial - TechAxis
Public Inheritance in C++ - A foundational aspect of object-oriented programming that enables a derived class to inherit all public and protected members from a base class, allowing seamless code reuse and extension.
🔹 Understanding Public Inheritance:
In public inheritance, a derived class inherits the accessible members of a base class as if they were its own. This lets the derived class use base class functions and attributes directly, promoting modularity and simplifying code maintenance.
🔹 Understanding Public Access Modifiers: Learn how public access modifiers grant visibility to class attributes and methods throughout the program. This feature is essential when designing classes that need accessible components for interfacing with other classes or functions, fostering reusability and modularity.
Topics Covered:
What is Public Inheritance?
Learn how this inheritance type lets derived classes expand functionality without re-implementing code, keeping class hierarchies clean and efficient.
What is a Public Access Modifier?
Understand how this modifier allows open access to specific class members, letting them be used and modified outside of the class without restrictions.
📝 Notes: www.programiz.com/cpp-programming/public-protected-private-inheritance
Introduction & Setup: th-cam.com/video/1zHAn_9whE4/w-d-xo.html
Basic Structure & Comments: th-cam.com/video/UZYEB3Id1_g/w-d-xo.html
Variables & Datatypes: th-cam.com/video/28-paqgPgSI/w-d-xo.html
Variables & Operators: th-cam.com/video/dX9blkm3V_8/w-d-xo.html
Condition & Looping: th-cam.com/video/13gu_TRxXoA/w-d-xo.html
Break & Continue Statements: th-cam.com/video/gcFYG23c76Q/w-d-xo.html
Function & Datatypes: th-cam.com/video/zgFQXvW13ds/w-d-xo.html
Function & Parameters: th-cam.com/video/qcr4IjsMVTI/w-d-xo.html
Function Overloading: th-cam.com/video/hi49gK3uu50/w-d-xo.html
Default Arguments: th-cam.com/video/Og9HJ6XIgWY/w-d-xo.html
Recursive Functions: th-cam.com/video/dDloQt5i75s/w-d-xo.html
Introduction to Arrays: th-cam.com/video/UIWjZjS3MdQ/w-d-xo.html
Passings Arrays to Functions: th-cam.com/video/52YtH6gzCZo/w-d-xo.html
Multidimensional Arrays: th-cam.com/video/md2UtvM_UYI/w-d-xo.html
Strings: th-cam.com/video/ogMQXhEdgDI/w-d-xo.html
Pointers: th-cam.com/video/ogMQXhEdgDI/w-d-xo.html
Pointers & Arrays: th-cam.com/video/mFyahkJkhYE/w-d-xo.html
Object Oriented Programming: th-cam.com/video/v3TnX9hYfTI/w-d-xo.html
C++ Constructors: th-cam.com/video/LJkOo9zzlgc/w-d-xo.html
C++ Copy Constructors: th-cam.com/video/QQM81Re2d5A/w-d-xo.html
Constructor Overloading: th-cam.com/video/aRJE_JwCEjo/w-d-xo.html
Dynamic Memory Allocation: th-cam.com/video/CRbnXd5zAas/w-d-xo.html
Problem With Dynamic Memory Allocation: th-cam.com/video/IKv7PRuViNA/w-d-xo.html
Access Modifiers: th-cam.com/video/D0uDN8Nv_Bg/w-d-xo.html
Encapsulation: th-cam.com/video/tF96amWietk/w-d-xo.html
Friend Function & Classes: th-cam.com/video/US46x9r2K20/w-d-xo.html
Inheritance: th-cam.com/video/ZAbC0HozqgA/w-d-xo.html
Global Context & Scopes: th-cam.com/video/dBkmE0aAQVc/w-d-xo.html
Public Inheritance & Access Modifiers: th-cam.com/video/nttvah5L38o/w-d-xo.html
Full Course Playlist -- bit.ly/TechAxisOOP
Stay Connected with TechAxis
Website: techaxis.com.np/
Facebook: techaxis.np
Instagram: techaxisnp
Discord: discord.gg/HM35fnaEhH
#cpp #programming #nepali
มุมมอง: 16

วีดีโอ

Global Context & Scopes | C++ Nepali Tutorial - TechAxis
มุมมอง 21วันที่ผ่านมา
Global Contexts and Scopes in C , essential concepts for managing variable visibility and lifespan within a program. Understanding scopes is crucial for effective memory management and avoiding naming conflicts. Global Context & Scopes | C Nepali Tutorial - TechAxis In this tutorial, we will cover: 🔹 What is Inheritance?: Understand how inheritance allows a new class (derived class) to acquire ...
The BEST Digital Marketing Training in Nepal - TechAxis
มุมมอง 4.8Kวันที่ผ่านมา
This Digital Marketing Training course from TechAxis offers hands-on experience and expert guidance to help you master SEO, social media marketing, content creation, PPC, and much more. Get certified, stay ahead of industry trends, and boost your career or business with cutting-edge strategies tailored for today's digital landscape. Enroll now and take your first step toward becoming a digital ...
Inheritance | C++ Nepali Tutorial - TechAxis
มุมมอง 1114 วันที่ผ่านมา
Inheritance, a fundamental concept in Object-Oriented Programming (OOP) that allows one class to inherit properties and behaviors from another. Inheritance promotes code reusability and makes it easier to create complex systems by building on existing code. Inheritance | C Nepali Tutorial - TechAxis In this tutorial, we will cover: 🔹 What is Inheritance?: Understand how inheritance allows a new...
Friend Function & Classes | C++ Nepali Tutorial - TechAxis
มุมมอง 3214 วันที่ผ่านมา
Friend Functions and Friend Classes in C , an advanced feature of Object-Oriented Programming (OOP) that allows more flexible access to private and protected members of a class. In this tutorial, we will cover: 🔹 Friend Function: Learn how a friend function is not a member of a class but has special permission to access private and protected members of that class. Understand the syntax and use ...
Encapsulation | C++ Nepali Tutorial - TechAxis
มุมมอง 1214 วันที่ผ่านมา
Encapsulation, a key concept in Object-Oriented Programming (OOP) that ensures data security and integrity by restricting direct access to an object’s internal details. Encapsulation | C Nepali Tutorial - TechAxis In this tutorial, we will cover: 🔹 What is Encapsulation?: Understand how encapsulation bundles data (variables) and methods (functions) that operate on the data within a class, prote...
Access Modifiers | C++ Nepali Tutorial - TechAxis
มุมมอง 614 วันที่ผ่านมา
Welcome to TechAxis IT Training Institute! In this session of our C tutorial series, we will dive into Access Modifiers, an important concept in Object-Oriented Programming (OOP) that controls the visibility and accessibility of class members (variables and functions). Access Modifiers | C Nepali Tutorial - TechAxis In this tutorial, we will cover: 🔹 Public, Private, and Protected: Understand t...
Problem With Dynamic Memory Allocation | C++ Nepali Tutorial - TechAxis
มุมมอง 5014 วันที่ผ่านมา
The mechanism by which storage/memory/cells can be allocated to variables during the run time is called Dynamic Memory Allocation (not to be confused with DMA). It allocates the memory during the run time which enables us to use as much storage as we want, without worrying about any wastage. Problem With Dynamic Memory Allocation | C Nepali Tutorial - TechAxis 📝 Notes: www.geeksforgeeks.org/wha...
Dynamic Memory Allocation | C++ Nepali Tutorial - TechAxis
มุมมอง 421 วันที่ผ่านมา
The mechanism by which storage/memory/cells can be allocated to variables during the run time is called Dynamic Memory Allocation (not to be confused with DMA). It allocates the memory during the run time which enables us to use as much storage as we want, without worrying about any wastage. Dynamic Memory Allocation | C Nepali Tutorial - TechAxis 📝 Notes: www.geeksforgeeks.org/what-is-dynamic-...
Constructor Overloading | C++ Nepali Tutorial - TechAxis
มุมมอง 321 วันที่ผ่านมา
What Are Constructors? Learn the fundamentals of constructors and why they are needed for object initialization. Understand how constructors ensure that your objects are created with a valid initial state. Constructor Overloading | C Nepali Tutorial - TechAxis 📝 Notes: www.programiz.com/cpp-programming/object-class Introduction & Setup: th-cam.com/video/1zHAn_9whE4/w-d-xo.html Basic Structure &...
C++ Copy Constructors | C++ Nepali Tutorial - TechAxis
มุมมอง 521 วันที่ผ่านมา
What Are Constructors? Learn the fundamentals of constructors and why they are needed for object initialization. Understand how constructors ensure that your objects are created with a valid initial state. C Copy Constructors | C Nepali Tutorial - TechAxis 📝 Notes: www.programiz.com/cpp-programming/object-class Introduction & Setup: th-cam.com/video/1zHAn_9whE4/w-d-xo.html Basic Structure & Com...
MERN Stack Training | Student’s Review - TechAxis
มุมมอง 1328 วันที่ผ่านมา
Curious about what it's like to be a student in our MERN Stack Training program? Dive into firsthand experiences and insights with our latest student review video! 🎓💼 In this candid testimonial, one of our accomplished students Mr. Paras Shakya shares his journey through our comprehensive MERN Stack Training course. From mastering MongoDB, Express.js, React, and Node.js to tackling real-world p...
C++ Constructors | C++ Nepali Tutorial - TechAxis
มุมมอง 1028 วันที่ผ่านมา
What Are Constructors? Learn the fundamentals of constructors and why they are needed for object initialization. Understand how constructors ensure that your objects are created with a valid initial state. C Constructors | C Nepali Tutorial - TechAxis 📝 Notes: www.programiz.com/cpp-programming/object-class Introduction & Setup: th-cam.com/video/1zHAn_9whE4/w-d-xo.html Basic Structure & Comments...
GODOT Game Engine Just Got CANCELLED
มุมมอง 254หลายเดือนก่อน
GODOT Game Engine Just Got CANCELLED
Introduction to Object Oriented Programming | C++ Nepali Tutorial - TechAxis
มุมมอง 118หลายเดือนก่อน
Introduction to Object Oriented Programming | C Nepali Tutorial - TechAxis
Digital Marketing Training | Student’s Review - TechAxis
มุมมอง 432 หลายเดือนก่อน
Digital Marketing Training | Student’s Review - TechAxis
How to Use Python for Machine Learning (Data Science) - TechAxis
มุมมอง 3202 หลายเดือนก่อน
How to Use Python for Machine Learning (Data Science) - TechAxis
Digital Marketing Training | Student’s Review - TechAxis
มุมมอง 463 หลายเดือนก่อน
Digital Marketing Training | Student’s Review - TechAxis
Pointers & Arrays | C++ Nepali Tutorial - TechAxis
มุมมอง 1243 หลายเดือนก่อน
Pointers & Arrays | C Nepali Tutorial - TechAxis
What Students Say About Us - TechAxis
มุมมอง 583 หลายเดือนก่อน
What Students Say About Us - TechAxis
DevOps Training | Student’s Review - TechAxis
มุมมอง 443 หลายเดือนก่อน
DevOps Training | Student’s Review - TechAxis
MERN Stack Training | Student’s Review - TechAxis
มุมมอง 623 หลายเดือนก่อน
MERN Stack Training | Student’s Review - TechAxis
Pointers | C++ Nepali Tutorial - TechAxis
มุมมอง 804 หลายเดือนก่อน
Pointers | C Nepali Tutorial - TechAxis
Data Science with Python | Student’s Review - TechAxis
มุมมอง 8054 หลายเดือนก่อน
Data Science with Python | Student’s Review - TechAxis
Overview of Quality Assurance Training In Nepal - TechAxis
มุมมอง 2514 หลายเดือนก่อน
Overview of Quality Assurance Training In Nepal - TechAxis
Strings | C++ Nepali Tutorial - TechAxis
มุมมอง 344 หลายเดือนก่อน
Strings | C Nepali Tutorial - TechAxis
Multidimensional Arrays | C++ Nepali Tutorial - TechAxis
มุมมอง 334 หลายเดือนก่อน
Multidimensional Arrays | C Nepali Tutorial - TechAxis
Data Science with Python | Student’s Review - TechAxis
มุมมอง 2.7K5 หลายเดือนก่อน
Data Science with Python | Student’s Review - TechAxis
Passings Arrays as Arguments | C++ Nepali Tutorial - TechAxis
มุมมอง 275 หลายเดือนก่อน
Passings Arrays as Arguments | C Nepali Tutorial - TechAxis
Overview of Python with Data Science Training - TechAxis
มุมมอง 3185 หลายเดือนก่อน
Overview of Python with Data Science Training - TechAxis

ความคิดเห็น

  • @dger6987
    @dger6987 11 วันที่ผ่านมา

    I have been just thinking for a digital marketing study and this comes up interesting my phone is listening

  • @sunitabk5352
    @sunitabk5352 23 วันที่ผ่านมา

    Join sir

    • @techaxisacademy
      @techaxisacademy 22 วันที่ผ่านมา

      Contact Details Phone number (+977) 9802302081

  • @sunitabk5352
    @sunitabk5352 23 วันที่ผ่านมา

    I Wana sir

  • @techaxisacademy
    @techaxisacademy หลายเดือนก่อน

    Before starting OOP, do you want to learn the basics of C++? Here's how YOU can get started! ✨th-cam.com/video/1zHAn_9whE4/w-d-xo.html

  • @ur-mtv
    @ur-mtv หลายเดือนก่อน

    sir malai k imagine ani tei anusar ko video banauna man xa.... jastai auta aeroplane udi rako xa ani teslai accident vako video banauna paryo vane yo k ma parxa malai siknu xa please reply

    • @techaxisacademy
      @techaxisacademy หลายเดือนก่อน

      Hi, Mahesh! For that you'll need to learn these🔥 Learn Video Editing (DaVinci Resolve or Premiere Pro) Master 3D Modeling & Animation (Blender) Explore VFX (After Effects) We’re here to guide you! Start with video editing today: techaxis.com.np/course/video-editing-training-in-nepal

    • @ur-mtv
      @ur-mtv หลายเดือนก่อน

      @@techaxisacademy maile enquiry pathako xu, ra malai fast reply dinu hola, now i m in foreign country please mail me

  • @JanLowekamp
    @JanLowekamp หลายเดือนก่อน

    watching caseoh makes your phone heavier too

  • @Ajs_new_mouse
    @Ajs_new_mouse หลายเดือนก่อน

    Cap🧢🧢🧢

  • @purpliebrawl
    @purpliebrawl หลายเดือนก่อน

    😑