Java Tutorial: Access modifiers, getters & setters in Java

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ต.ค. 2024
  • Java access modifiers: In this video, we will see how to use access modifiers in Java. Java offers public, default, private and protected access modifiers. We will also see how to use getters and setters!
    ►This playlist is a part of my Complete Java Course playlist: • Java Tutorials For Beg...
    ►Source Code + Notes - codewithharry....
    ►Ultimate Java CheatSheet: codewithharry....
    ►Checkout my English channel here: / programmingwithharry
    ►Click here to subscribe - / @codewithharry
    Best Hindi Videos For Learning Programming:
    ►Learn Python In One Video - • Python Tutorial In Hin...
    ►Python Complete Course In Hindi - • Python Tutorials For A...
    ►C Language Complete Course In Hindi -
    • C Language Tutorials I...
    ►JavaScript Complete Course In Hindi -
    • JavaScript Tutorials I...
    ►Learn JavaScript in One Video - • JavaScript Tutorial
    ►Learn PHP In One Video - • Learn Php In One Video...
    ►Django Complete Course In Hindi -
    • Python Django Tutorial...
    ►Machine Learning Using Python - • Machine Learning Tutor...
    ►Creating & Hosting A Website (Tech Blog) Using Python - • [Hindi] Web Developmen...
    ►Advanced Python Tutorials - • Intermediate/Advanced ...
    ►Object Oriented Programming In Python - • Object Oriented Progra...
    ►Python Data Science and Big Data Tutorials - • Python Data Science an...
    Follow Me On Social Media
    ►Website (created using Flask) - www.codewithhar...
    ►Facebook - / codewithharry
    ►Instagram - / codewithharry
    ►Personal Facebook A/c - / geekyharis
    Twitter - / haris_is_here

ความคิดเห็น • 580

  • @noone.4981
    @noone.4981 4 ปีที่แล้ว +136

    You're are really a great teacher. Most of the courses are expensive to learn which many people couldn't afford, but you're the only one man army who can teach us almost everything. Keep it up, keep doing this great work. God bless you.

    • @ashmitakour8262
      @ashmitakour8262 4 ปีที่แล้ว +2

      If You want to learn free Coding then download MX Coding Hub - Coding Made Easy from google play store and get free certificate. It's amazing and 100% free.

    • @vinitasharma8170
      @vinitasharma8170 3 ปีที่แล้ว +3

      Same views

  • @NoobCoder623
    @NoobCoder623 2 ปีที่แล้ว +11

    Your contribution is just wow.
    It is a evolution of coding in India

  • @privicyismyth9958
    @privicyismyth9958 4 ปีที่แล้ว +450

    You making the future of 🇮🇳🇮🇳🇮🇳🇮🇳 better I am sure you are rewarded as BHARAT RATNA in future

    • @privicyismyth9958
      @privicyismyth9958 3 ปีที่แล้ว +4

      @@technicalsahilabbasi2171 thanks

    • @vkraj8735
      @vkraj8735 3 ปีที่แล้ว +20

      😂😂😂😂😂😂What a joke

    • @ayushmishra6915
      @ayushmishra6915 3 ปีที่แล้ว +19

      @@vkraj8735 joke nhi yr itne acche say explain krte hai harry sir agar inka jaise college ke teacher ho jaye too subko coding easy lagege ❤️🙏

    • @icebear3627
      @icebear3627 3 ปีที่แล้ว +5

      Not only India also other country people who knows Hindi and multi languages🙂🙂

    • @shivampanjiyara8288
      @shivampanjiyara8288 3 ปีที่แล้ว +6

      You should definitely not joke on people like these as they are damn rare🥺🥺🥺

  • @kartikparmar9959
    @kartikparmar9959 3 ปีที่แล้ว +11

    Harry bhai I cant thank you enough. I am doing courses for Java fullstacks. Today they taught us the topic for 3 hours and I couldnt figure out why we use this thing. My professor replied to me that its used to access private variables. Bhai apne itna ache se explain kiya k why exactly we need to use it. We need teachers like you. I have learnt so much from you and I cant thank you enough. I cant even pay you back. I always like your video first before watching it. You are Great Brother.

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now?

  • @Greed_grayson
    @Greed_grayson 4 ปีที่แล้ว +12

    Dear Harry sometimes i thing u are out of this world 'cause u made my learning so easy that even my school teachers can't .

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว +2

      Did you saw all of his videos and how good are you at coding now

  • @09.arkodevmukherjee24
    @09.arkodevmukherjee24 4 ปีที่แล้ว +25

    Sir really nice timing and I was sitting ideal and thinking about java and got the notification

    • @ashmitakour8262
      @ashmitakour8262 4 ปีที่แล้ว

      If You want to learn free Coding then download MX Coding Hub - Coding Made Easy from google play store and get free certificate. It's amazing and 100% free.

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว +1

      Did you saw all of his videos and how good are you at coding now

    • @HassanAli-x4o
      @HassanAli-x4o 3 หลายเดือนก่อน

      and you​@@sanafatima1759

  • @nandinivangaveti737
    @nandinivangaveti737 2 ปีที่แล้ว +28

    Hi Harry,
    My name is V.Nandini. A Huge Fan of you from Telangana. I had started learning java from many sites and other youtube videos, but not at all satisfied and I had stopped learning them in between. To speak honestly, your channel and you are brilliant. It had solved many of my doubts. I had became efficient after doin many of your exercises, practise sets and following your notes mainly. I had accessed your entire java playlist too. Thankyou very much Harry!!!!
    Answer ::::::::
    class Circle{
    private int radius;
    public int getRadius(){
    return radius;
    }
    public int setRadius(int r){
    return radius=r;
    }
    public float area(){
    return 3.14f*(radius*radius);
    }
    }
    public class Main{
    public static void main(String[] args) {
    Circle cr = new Circle();
    cr.setRadius(5);
    System.out.println(cr.getRadius());
    System.out.println(cr.area());
    }
    }

    • @mayureshlavangare116
      @mayureshlavangare116 ปีที่แล้ว +5

      sorry to say this Nandini, but while setting the radius you don't have to use int, instead you should've used void..
      ex: public void setRadius(int r){
      radius = r;
      }
      public int getRadius(){
      return radius;
      }
      Ps - Please correct me if I'm wrong

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

      Wrong hai bhai
      Tune method me condition nahi Diya hai check kerne ke liye
      Aur pubic void setradius hota hai
      Setter returns type nahi hai

  • @socialogic725
    @socialogic725 3 ปีที่แล้ว +10

    Your teaching is a gift to this Generation !! thanks alot sir.

  • @sadashish2002
    @sadashish2002 4 ปีที่แล้ว +3

    Bhai aap brilliant work kar rahe ho ,audience harry bhai itna hard work kar rahe hain ,plz yaar inko support karo❤️❤️🙏🙏.Bhai maine aapka sabse pahle 2:30 hours wala course complete kar liya ab iska baari hai. Love u bhai from jharkhand,har koi online paise lete hain koi v language sikhane k liye aur aap poor k liye sab kuch free kar diye ho wooo

  • @manalikarankal6570
    @manalikarankal6570 3 ปีที่แล้ว +3

    i really got this concept and loved the soundtrack at the end of the video.

  • @DelicaciousTales
    @DelicaciousTales 3 ปีที่แล้ว +13

    Thank you so much for your amazing videos... It feels like Concept on OOPs is clear after watching these tutorials of urs.😊

  • @humaali4636
    @humaali4636 3 ปีที่แล้ว +5

    Harry bhai u literally deservs bharat ratn.... u teach us from 'our' perspective of seeing at logic and code n thats really rare. M really thankful to u for creating such important stuffs.
    Bdw Elon Musk ka joke wad really funny that keeps us engaged and entertained throughout 👍👍👍👍

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @buddhadebbairagi2022
    @buddhadebbairagi2022 4 ปีที่แล้ว +5

    Man, this Guy really needs a big hand. He is just giving his best to make us learn coding.

    • @ashmitakour8262
      @ashmitakour8262 4 ปีที่แล้ว

      If You want to learn free Coding then download MX Coding Hub - Coding Made Easy from google play store and get free certificate. It's amazing and 100% free.

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @bholekdiwanee5669
    @bholekdiwanee5669 4 ปีที่แล้ว +10

    Thanks a lot of this free tutorials 😊🌼 My God Bless U Harry Bhaii...

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @Zeus-xr4dc
    @Zeus-xr4dc 4 หลายเดือนก่อน

    bhai your channel and websites is a GOLD MINE!!!!!!!!!!!

  • @ritikchaudhary1984
    @ritikchaudhary1984 2 ปีที่แล้ว +50

    class Circle {
    private int radius;
    private float area;
    private float perimeter;
    public void setradius(int r){
    radius = r;
    }
    public void checkarea(float a){
    area=3.14f*radius*radius;
    if(area==a)
    {
    System.out.println("Correct Area.");
    }
    else{
    System.out.println("Incorrect Area.");
    }
    }
    public void checkperimeter(float p){
    perimeter = 2*3.14f*radius;
    if(perimeter==p)
    {
    System.out.println("Correct Perimeter.");
    }
    else{
    System.out.println("Incorrect Perimeter.");
    }
    }
    }
    public class roughjava{
    public static void main(String[] args){
    Circle ci= new Circle();
    ci.setradius(3);
    ci.checkarea(28.26f);
    ci.checkperimeter(18.84f);
    }
    }

    • @badalsahoo3902
      @badalsahoo3902 2 ปีที่แล้ว +5

      clean code💗

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

      Bro Why you Have Done area==a and perimeter==p could you please explain

    • @Fatima-x1h3y
      @Fatima-x1h3y 2 หลายเดือนก่อน +1

      @@sarthaktripathi7441 ya check kara ga ka user na float datatype ke value he put ke ha ya kuch or

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

      ​@@Fatima-x1h3y nhi ... Ye check karega original area aur user ne jo area set kia hai right hai ki nahi

    • @Fatima-x1h3y
      @Fatima-x1h3y หลายเดือนก่อน

      ​@@SyedUzair_5 yeah right

  • @mohdkamran1861
    @mohdkamran1861 3 ปีที่แล้ว

    yrr harry bhai thanku dil se java ke liye mujhe lg nhi rha tha itne aache se koi pdha sakta h opps conspt

  • @biswajeet9826
    @biswajeet9826 3 หลายเดือนก่อน +3

    Finally!!
    End of 40th video!!
    Couldn't finish it last night but at now the milestone is passed!!
    Tomorrow shall be for 50th!!
    Jai Hind!!
    Jai Jagannath!!

  • @RohanDasRD
    @RohanDasRD 4 ปีที่แล้ว +7

    I was thinking of java when I got the notification xD yayyyy

  • @godlikeofficial9635
    @godlikeofficial9635 3 ปีที่แล้ว +2

    You are a greate teacher ........your all video are so intrusting and meaningfull.....keep it up 👍👍

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @akshit288
    @akshit288 4 ปีที่แล้ว +5

    You are rocking Harry bhai

  • @jagadeshgarrepally4251
    @jagadeshgarrepally4251 ปีที่แล้ว

    Thank you so much brother I am Telugu, but I understand only Your classes, really great.

  • @islamicknowledge9328
    @islamicknowledge9328 3 วันที่ผ่านมา

    You are doing absolutely Fantastic work. How to prepare yourself for exams?

  • @LalitKumar-ts5tq
    @LalitKumar-ts5tq 3 ปีที่แล้ว +2

    Your teaching is making it too easy too learn thank you bro👍

  • @Sujan_Das14
    @Sujan_Das14 4 ปีที่แล้ว +1

    Sir u are the only good thing happening to me this year

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @JenuHDMI
    @JenuHDMI ปีที่แล้ว +1

    Thanks Harry Bhai For This Course ❤

  • @siddhant3725
    @siddhant3725 4 ปีที่แล้ว +1

    You deserve more than 1000 million subscribers

  • @thunderbolt3017
    @thunderbolt3017 4 ปีที่แล้ว +1

    U r doing really good job for us, bhagwan tumhe disha ptaani ki dilaye

  • @reloadingbrains5460
    @reloadingbrains5460 4 ปีที่แล้ว +13

    Getter and setter are very important in Android development for example getText(),setImageResource() etc

  • @eaglehunter6487
    @eaglehunter6487 3 ปีที่แล้ว

    Harry bhai aap bahut accha padhte ho hats off to you

  • @binodofficial8420
    @binodofficial8420 4 ปีที่แล้ว +1

    East or west code with harry is the best.
    Love u so much sir 😘😘
    Thank you for your best playlist which we get in free 😘😘 love u so much thank ×10000 times . loop 😂😂 mey chala dijye thank you ko

  • @vanraj8169
    @vanraj8169 3 ปีที่แล้ว

    Keyboard noice is so satisfying man!!😍

  • @sumitsinghchauhan4330
    @sumitsinghchauhan4330 ปีที่แล้ว +1

    i am happy with this explanation

  • @vaniyash3074
    @vaniyash3074 ปีที่แล้ว

    Dear Harry, This video help me a lot, Thanks.

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

    You are doing great work sir ❤

  • @shouryarajput5633
    @shouryarajput5633 3 ปีที่แล้ว +1

    Bro you made the learning so easy and fun......Keep the work up.

  • @saurabhverma5460
    @saurabhverma5460 2 ปีที่แล้ว

    Awesome 👍👍🎉🎉 video and knowledgable I was so confused about getter setter but now clear all doubt thnku bhai .... ❤️❤️❤️

  • @chandrakanth8495
    @chandrakanth8495 3 ปีที่แล้ว +1

    This is one of the best course

  • @after_padhaigaming393
    @after_padhaigaming393 ปีที่แล้ว

    Tank u bhaiya for all this great lectures.. 🙂

  • @utkarshsinghrajawat5038
    @utkarshsinghrajawat5038 4 ปีที่แล้ว +1

    Sir you are the best coding youtuber in the world 🔥🔥

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @engineerbhai7642
    @engineerbhai7642 4 ปีที่แล้ว +4

    You are great coder in the world. Thank you sir.

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @yashsk4682
    @yashsk4682 2 ปีที่แล้ว +1

    Thank you very much harry bhai.

  • @sukhpreetsingh5200
    @sukhpreetsingh5200 2 ปีที่แล้ว

    Congratulations Harry bhai 3million done and more to come ❤️🥳

  • @rajvlogs7688
    @rajvlogs7688 ปีที่แล้ว

    you're genius Harry Bhai 😊.

  • @AnkitKumar-pm6vj
    @AnkitKumar-pm6vj 4 ปีที่แล้ว +13

    Springboot tk course le jaana bro plzzzz👉👉🔥🔥🔥🔥❤️❤️ haath jod rha hun....Plzzz springboot tk.....Full stack java ...Kyunki mere jaise bahut se log honge jo 40000 ya 50000 paisa ni laa payenge plzzzzz 🙄🙄🔥 kaash ye sach ho jaye ki harry bhai Springboot tk sikha de....Plzzz support kro....Please❤️❤️❤️❤️❤️❤️

    • @ashmitakour8262
      @ashmitakour8262 4 ปีที่แล้ว

      If You want to learn free Coding then download MX Coding Hub - Coding Made Easy from google play store and get free certificate. It's amazing and 100% free.

    • @humaali4636
      @humaali4636 3 ปีที่แล้ว

      I totally agreee with u

  • @omchandwadkar4395
    @omchandwadkar4395 ปีที่แล้ว +1

    good ex. on object oriented programming broo

  • @ameybhandari6865
    @ameybhandari6865 ปีที่แล้ว +1

    Thanks harry for this video.

  • @himankjeshwar8636
    @himankjeshwar8636 2 ปีที่แล้ว +107

    10:42 - Checking Area and Circumference of a Circle using getters and setters
    class Circle{
    private float radius,area,circumference;
    void setRadius(float r){
    radius = r;
    }
    void setArea(float a){
    if (a==22*radius*radius/7)
    area = a;
    else
    System.out.println("WARNING : Wrong area as per the radius.");
    }
    void setCircumference(float c){
    if (c==2*22*radius/7)
    circumference=c;
    else
    System.out.println("WARNING : Wrong circumference as per the radius.");
    }
    float getRadius(){
    return radius;
    }
    float getArea(){
    return area;
    }
    float getCircumference(){
    return circumference;
    }
    }
    public class Checking_Circumference_and_Area_Of_Circle {
    public static void main(String[] args) {
    Circle cr = new Circle();
    cr.setRadius(9.0f);
    cr.setArea(254.571428571429f);
    cr.setCircumference(56.5714285714286f);
    System.out.println("Area : "+cr.getArea()+" sq. cm");
    System.out.println("Circumference : "+cr.getCircumference()+" cm");
    }
    }

    • @ganeshshet390
      @ganeshshet390 2 ปีที่แล้ว +7

      Thanks

    • @arijitsinghkegaane7858
      @arijitsinghkegaane7858 ปีที่แล้ว

      Thanks 👍

    • @shalinijoshi1103
      @shalinijoshi1103 ปีที่แล้ว

      bdiya jio jio

    • @manjit0000
      @manjit0000 ปีที่แล้ว +1

      Why are you use float and make code complicate. Simple use int enter radius and cut the remaning point value :)...

    • @yeevoohihaina2524
      @yeevoohihaina2524 ปีที่แล้ว +7

      @@manjit0000 brother using float is usually a safer option alwayss

  • @Kumarsingh-p23
    @Kumarsingh-p23 4 ปีที่แล้ว

    You are very hard working person

  • @RehanAliArman-mt8pr
    @RehanAliArman-mt8pr 6 หลายเดือนก่อน

    amazing lectures thank very much🤩🤩😍

  • @virendramali1754
    @virendramali1754 ปีที่แล้ว

    Thanks sir for clearing our doubts ❤

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

    HAPPY TEACHER'S DAY ❤ HARRY BHAIYA...learned a lot from you..🧡🤍💚

  • @oyepuru
    @oyepuru 4 ปีที่แล้ว +10

    Next Roadmap Please Competitive Programing 🙏🙏🙏🙏🙏

  • @Sujan_Das14
    @Sujan_Das14 4 ปีที่แล้ว +2

    U are a star harry bhai

  • @gouravgupta5799
    @gouravgupta5799 4 ปีที่แล้ว

    harry bhai i love your video thnkyou for this free classes

  • @hydrarakesh7150
    @hydrarakesh7150 ปีที่แล้ว

    Mazza aarha I'll see you next time❤️💡😘

  • @Karthik-kt24
    @Karthik-kt24 3 ปีที่แล้ว

    Thank you very much harry bhaiya🙏 u are helping everyone soo much🙏thanks for educating millions for free!! Seriously may God bless you bhai🙏🙇‍♂️

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @shivampanjiyara8288
    @shivampanjiyara8288 3 ปีที่แล้ว +1

    I don't know how many times i will comment but you are a legend🥺🥺🥺❤️❤️. You are changing life of many and if I will be one, i will pay all the debts from depth of my heart🥺

  • @AnkitSingh-wc8gz
    @AnkitSingh-wc8gz 4 ปีที่แล้ว +2

    Nice job dude!! Keep doing and keep going!! ❤️❤️

  • @vidhya821
    @vidhya821 3 ปีที่แล้ว

    If i only i had met someone like you in my engg days, i would love programming :|

  • @dorababuarig765
    @dorababuarig765 3 ปีที่แล้ว

    Clearly understood Harry bayya

  • @karnavpanchal3281
    @karnavpanchal3281 3 ปีที่แล้ว +2

    Abhi programming me maja aaya na bhidu !!!!! ye dukh finally khatam ho gaya ;)

  • @rajvlogs7688
    @rajvlogs7688 ปีที่แล้ว +1

    thank you so much for provide this course.

  • @royfamily9273
    @royfamily9273 ปีที่แล้ว +1

    Thanks Harry Bhaiya

  • @sjprpd
    @sjprpd 3 ปีที่แล้ว +4

    Can you make a short video on how to apply input validations? Like accepting only int or char etc etc in any language... It will be very helpful. Thank you

  • @SSR-ro3up
    @SSR-ro3up 3 ปีที่แล้ว

    3:18
    getter setter method Thanks

  • @shivamrai1322
    @shivamrai1322 4 ปีที่แล้ว

    Superb haary bhai

  • @sourabhpal6437
    @sourabhpal6437 2 ปีที่แล้ว

    amazing sir you are the best thank you so much sir

  • @soumyadipmajumder3450
    @soumyadipmajumder3450 2 ปีที่แล้ว

    Thank you for the full java course.

  • @stevefox2318
    @stevefox2318 3 ปีที่แล้ว

    waaahh harry bro after so long java oops smjh aya

  • @jesuslovesyou590
    @jesuslovesyou590 4 ปีที่แล้ว +1

    Loving this Java cource sir 👍

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @priyagupta-qr8tv
    @priyagupta-qr8tv 4 ปีที่แล้ว

    very fruitful video. i have one request that plz make videos on .net development. i really like your teaching way.. ty sir.. tysm

  • @AllinOne-nw9eh
    @AllinOne-nw9eh 4 ปีที่แล้ว +1

    Nice Java Tutorial

  • @Cherry-fl4zp
    @Cherry-fl4zp 2 ปีที่แล้ว +1

    Thank you sir!❤️

  • @ANKITSINGH-vb9hn
    @ANKITSINGH-vb9hn 4 ปีที่แล้ว

    Bhai i got a t shirt through the hacktober fest which u suggested in a video
    Thanks

  • @itskeshhu
    @itskeshhu 4 ปีที่แล้ว

    Sir jb bhi m koi book padhta hu usme naming conventions pr boht dhyaan diya jaata h aur samajhne me aasani hoti h isiliye aap bhi naming vagera thodi topic se related rha kro.
    Like at 4:10 line 7 me aapne parameter me "String n" name rkha h jo ki topic se bilkul bhi related nhi h toh thoda names pr bhi dhyan diya kro🙏
    It's just a suggestion to improve your content 😄.

  • @shantanuhiwrale9843
    @shantanuhiwrale9843 2 ปีที่แล้ว

    Amazing java course

  • @navyanshtechnicalpoint3000
    @navyanshtechnicalpoint3000 4 ปีที่แล้ว

    Sir I got 2020 Hacktober Fest T-Shirt..A Huge Thanks for introducing it to commoners.

  • @maqsoodwani3063
    @maqsoodwani3063 3 ปีที่แล้ว

    Harry bhai last ma pura notes mila kar dadana ... Love from kashmir

  • @abhinabdas8661
    @abhinabdas8661 3 ปีที่แล้ว

    Bhaijaan ❤️ tussi great ho

  • @saiyamarora3788
    @saiyamarora3788 3 ปีที่แล้ว

    This course is very good :)

  • @alokapatel8159
    @alokapatel8159 4 ปีที่แล้ว +4

    Sir, your this java course WITH NOTES is really very helpful but I have a question that will this course help us in android app development
    REPLY SOON

  • @Aman.Kumar_2303
    @Aman.Kumar_2303 4 ปีที่แล้ว

    Harry Bhai,
    Please come live on TH-cam for us.

  • @misl_khalis
    @misl_khalis 2 ปีที่แล้ว +1

    Thanks a lot sir

  • @krishmakhani8988
    @krishmakhani8988 4 ปีที่แล้ว +2

    We want a Qna session

  • @manishprajapati8328
    @manishprajapati8328 4 ปีที่แล้ว +5

    Plz make something for BCA students also ...
    About how they want to start learning some other languages..

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

    • @manishprajapati8328
      @manishprajapati8328 2 ปีที่แล้ว

      @@sanafatima1759 i have seen 4-5 videos but not for learning just to know his teaching style nd all.
      Now I know dsa with java, html, css, js, react, node, now learning mongo and express not from him but from other sources :(
      He is also a very good teacher but I'm not able to get his teaching so I stopped watching him. 👍

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      @@manishprajapati8328 great! Thank you

  • @GeekyShubhamSharma
    @GeekyShubhamSharma 4 ปีที่แล้ว

    T shirt order kar di hackertober fest wali💚💚💚❤️💚❤️💚❤️💚❤️😆😁😄😀😄
    Love u Harry bhai💚❤️❤️

  • @rachnajain583
    @rachnajain583 4 ปีที่แล้ว

    Dhanyavaad Harry Sir!!!!
    Please Give A ShotOut Please :-}

  • @chetankadam6510
    @chetankadam6510 4 ปีที่แล้ว +4

    Sir please react js par tutorial banao

  • @gamingwithrampazze3401
    @gamingwithrampazze3401 4 ปีที่แล้ว +1

    Hello Harry bhaiya please make another video on Call by value and call by reference in c language

  • @StudioSix9
    @StudioSix9 ปีที่แล้ว

    Thank You Sir

  • @happykumar-ls7si
    @happykumar-ls7si 3 ปีที่แล้ว

    finally understand concept after watching it 4rt time \3

  • @ayushkaushik2459
    @ayushkaushik2459 4 ปีที่แล้ว

    Thank you Harry bhai i got my hacktober fest t-shirt ❤️😍

  • @RajvirSingh1313
    @RajvirSingh1313 4 ปีที่แล้ว +3

    Sir i got my t-shirt of hacktoberfest sir thanks alot :)

    • @shaikzubayr9327
      @shaikzubayr9327 4 ปีที่แล้ว +1

      When??

    • @RajvirSingh1313
      @RajvirSingh1313 4 ปีที่แล้ว +1

      @@shaikzubayr9327 I had cofirmed the order for the tshirt and it will come after 6-12 weeks as mentioned at hacktoberfest site :)

    • @shaikzubayr9327
      @shaikzubayr9327 4 ปีที่แล้ว +1

      Ok

  • @avaniavijit7327
    @avaniavijit7327 4 ปีที่แล้ว +2

    Sir can we assume a QNA at 1 million.

  • @keshavagarwal1825
    @keshavagarwal1825 2 ปีที่แล้ว

    Awesome Leatures

  • @ruchimantri1113
    @ruchimantri1113 3 ปีที่แล้ว +2

    your videos are so damn helpful !! THANK YOU SO MUCH for these :))))

    • @sanafatima1759
      @sanafatima1759 2 ปีที่แล้ว

      Did you saw all of his videos and how good are you at coding now

  • @Shri0900
    @Shri0900 ปีที่แล้ว

    10:42
    class circle1{
    private int rad;
    public int getRad(){
    return rad;
    }
    public void setRad(int i){
    this.rad=i;
    }
    public float area(){
    return (3.14f*rad*rad);
    }
    }

  • @Daryl8960
    @Daryl8960 4 ปีที่แล้ว

    Please make the whole java tutorial in one video.

  • @soundwave9649
    @soundwave9649 4 ปีที่แล้ว +1

    Harry bhai explain socket module in python