Arrays In Java - 2D Arrays (Multidimensional Arrays) by Deepak (Part 2) || Arrays for Beginners

Поделиться
HTML-код
  • Опубликовано: 30 сен 2024
  • #java #javatutorials #deepak #smartprogramming
    ☀ Java Development Course (Upto 80% off) : courses.smartp...
    📞 For more details Call or What's App : +91 98887-55565
    ------------------------------------------------------------------------------------------
    #ArraysInJava #SingleDimensionalArray #MultiDimensionalArray #java #hindi #deepak #JavaTutorials #DeepakPanwar #OnlineTraining #OnlineClasses
    2D Arrays (Multidimensional Arrays) in Java by Deepak (Part 1),
    Arrays for Beginners,
    Two Dimensional ( 2 D ) Array with Example | Java Tutorial for Beginners,
    Multidimensional Array in Java,
    2D Array in Java,
    Two Dimensional Arrays in Java Hindi,
    Introduction to Arrays,
    Array in Java Tutorial,
    Arrays in Java: 2D and 3D,
    Java tutorials for beginners,
    Java Tutorials by Deepak
    Arrays by Deepak
    This tutorial is for beginners, explained in a very simple and basic way with examples.
    ------------------------------------------------------------------------------------------
    Follow Me On Social Media :-
    ► Website : www.smartprogr...
    ► Instagram : / smart_programming
    ► Facebook : / smartprogramming.india

Комментарии • 180

  • @SmartProgramming
    @SmartProgramming  Год назад

    🚩🌳Professional Courses + Projects (Upto 80% off) 🌳 courses.smartprogramming.in
    🔴 Core Java Playlist : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
    🔴 Advance Java Playlist : ruclips.net/p/PLlhM4lkb2sEjVsbbZ_kiixY5CcR84IQUg
    🔴 Android Playlist : ruclips.net/p/PLlhM4lkb2sEhdllbTIVF0rzD0coCiuHok
    =====================================
    ▶ Core Java Chapter-wise Playlist ◀
    ⭕ 9. Collection Framework in Java | Java Data Structure : ruclips.net/p/PLlhM4lkb2sEiOcuH1g-CUuU288qmMNpyj
    ⭕ 8. Multithreading in Java : ruclips.net/p/PLlhM4lkb2sEh1pBs0KBb63PlKKqRx6M1a
    ⭕ 7. Strings In Java : ruclips.net/p/PLlhM4lkb2sEh8AARH5oEivYOrMgaVsPFb
    ⭕ 6. Exception Handling : ruclips.net/p/PLlhM4lkb2sEjaU-JAASDG4Tdwpf-JFARN
    ⭕ 5. OOP's Concepts : ruclips.net/p/PLlhM4lkb2sEhf5NlWeYh_gdcN49pHjVP0
    ⭕ 4. Arrays in Java : ruclips.net/p/PLlhM4lkb2sEi4UoqSmobDeA5VNI1f2w3C
    ⭕ 3. Control Statements : ruclips.net/p/PLlhM4lkb2sEgQmNKO43i7v60no4bdc3lI
    ⭕ 2. Java Introduction : ruclips.net/p/PLlhM4lkb2sEj6zsK25K9f15qNUATqYxGq
    ⭕ 1. Programming Basic Terminologies : ruclips.net/p/PLlhM4lkb2sEhwPZhFmlox57kaCgMm5UgC
    =====================================
    ▶Advance Java Chapter-wise Playlist ◀
    ⭕ 1. JDBC (Java Database Connectivity) with MySQL : ruclips.net/p/PLlhM4lkb2sEjDXBqaYbwAoDAQKh2yczR7
    ⭕ 2. Servlet & JSP Tutorials for Beginners : ruclips.net/p/PLlhM4lkb2sEiiEAP0uSFXiFY8KdXPnN0f

  • @spatra04
    @spatra04 6 лет назад +58

    I must say you have been excellent in training in all your videos. The concepts and all the logic are explained in such a beautiful manner, Kudos to you. The way the videos are edited meticulously to ensure that the audience never wastes even a single second. I still remember the way you explained the rows and columns logic while doing the WAP for patterns, that was the moment I got confidence in coding.
    Awaiting for the upcoming videos... May I request you to upload the videos more quickly... everyday I come to RUclips to check for new videos from you... I believe the various sorting will be uploaded very soon and I am very much eager to see the OOPS videos as well.

    • @SmartProgramming
      @SmartProgramming  6 лет назад +8

      thanks a lot for your valuable time and feedback.
      due to some personal problems i was not able to upload videos, not within 3-4 days will going to upload next video.
      thanks

    • @pravatajena7972
      @pravatajena7972 5 лет назад +1

      @@SmartProgramming sir me jub double quotes ke badle single quotes dia space me to out put kuch yesa tha
      42526272
      8292
      102112122
      Sir yesa kiyu aya plz batayea

  • @indurajput1836
    @indurajput1836 5 лет назад +1

    Sir what is public and private access???

  • @AshutoshKumar-vo3ws
    @AshutoshKumar-vo3ws 4 года назад

    Can we use For-Each loop for 2-D array?

  • @bharatsoni343
    @bharatsoni343 2 года назад +8

    Aap jese teacher's ki need sabhi jagah ke clllg or university main need hoti hn...par nhi milte ..apke videos dekh ke jo seekha shyd mne cllg time mn nhi seekh paya thankyou sir🙏🙏🙏🙏

  • @shraboniroy677
    @shraboniroy677 4 года назад +1

    Sir wo last wala "system.out.println()" why did we kept it blank?

  • @SatyamSingh-vq4wy
    @SatyamSingh-vq4wy 5 лет назад +8

    Great video i understand all the things but still confused that how to find the length if we declare 2D array in String.can you please explain it as because using 2D array i want to make a game like kbc.

    • @SmartProgramming
      @SmartProgramming  5 лет назад +11

      for ex we have following array:
      int arr[][] = new int[5][];
      arr[0] = new int[5];
      arr[1] = new int[3];
      System.out.println(arr[0].length); // 5
      System.out.println(arr[1].length); // 3
      System.out.println(arr[2].length); //Null pointer exception

  • @L3VIN11
    @L3VIN11 3 года назад +8

    Sir your content is just too good I love the way you teach! ❤️❤️❤️

    • @SmartProgramming
      @SmartProgramming  3 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Amazon Store: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @ANNUETAWAHCRPF
    @ANNUETAWAHCRPF 6 лет назад +2

    सर मैंने जावा जीरो से शुरू किया था अब आपसे सीखकर धीरे धीरे प्रोग्राम बनाने लगा हूं, सर मुझे वहां तक सीखना है कि किसी साइट से डाटा मोबाइल ऐप में शो कैसे करें

    • @SmartProgramming
      @SmartProgramming  6 лет назад

      sure, will upload more tutorials so that you can learn more basic to develop mobile application.
      thank you, keep learning 🙂🙂

  • @shohrabhossain2022
    @shohrabhossain2022 4 года назад +3

    This video forced me for subscribe 😍❤

    • @SmartProgramming
      @SmartProgramming  4 года назад +1

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Amazon Store: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @montukumar5670
    @montukumar5670 8 месяцев назад +1

    Thank you sirrrr. a[i].lenghth me bhut confusion hogaya tha, aapka video dekh k samjh aagaya .

  • @isongsseries6704
    @isongsseries6704 4 года назад +2

    please help & create competative program videos for this season code vita please sir & infitq how to crack it & it will also boost your channel a humble request sir please

  • @pravinbajbalkar
    @pravinbajbalkar Год назад +2

    Excellent sir...
    Your explanation is mind-blowing. Understanding is very easy.

    • @SmartProgramming
      @SmartProgramming  Год назад

      Thanks and welcome
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Shop With Us: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram : instagram.com/smart_programming

  • @AA-yp3fz
    @AA-yp3fz 4 года назад +6

    I must say that your way of explanation is excellent.. Keep doing it helps alot to other people like me...God bless you...

    • @SmartProgramming
      @SmartProgramming  4 года назад +2

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @kuchbhi6018
    @kuchbhi6018 5 лет назад +1

    Jub aap create , declare , intialise ek hi line mein krte h , tub aap New keyword ka use nhi krte h , toh bhi array object kaise banega ?

  • @shahzaibahmed9808
    @shahzaibahmed9808 4 года назад +11

    You really deserve some high Adulations for your teachings

  • @healthbeautytips8596
    @healthbeautytips8596 6 лет назад +3

    You are a Great Teacher.
    pehli bar kisi tutorial par comment kiya ha. boht ala..

    • @SmartProgramming
      @SmartProgramming  5 лет назад

      Hello Health Beauty Tips,
      Thanks a lot for your valuable feedback and support.
      If you are new, Please subscribe to get updates about new videos in the following link:
      ruclips.net/user/smartprogramming
      Below are the links of all the tutorials in java :
      1. Java Tutorials for Beginners : ruclips.net/video/J1TPKWIPFaE/видео.html
      2. Control Statements in Java (with programs and patterns) : ruclips.net/video/OUZkdKFeuK0/видео.html
      3. Arrays in Java (With Algorithms) : ruclips.net/video/dRrjjotgniA/видео.html

  • @ankitanand3781
    @ankitanand3781 2 года назад +2

    Excellent teacher 🤩🤩
    I understand all the thing
    The way of teaching of Deepak sir is unique and very interesting 🤩

  • @VISHALSHARMA-nf5uy
    @VISHALSHARMA-nf5uy 4 года назад +2

    Thanks sir

  • @akshitverma1221
    @akshitverma1221 3 года назад +2

    Sir tussi great ho kaam bana diya mera aapne 👌👌👌

    • @SmartProgramming
      @SmartProgramming  3 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Amazon Store: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @maddy5340
    @maddy5340 6 лет назад +2

    if int a[ ] [ ]= new int {{10,20,20},{20},{10,30}};
    what would be the length of a[1] .? would it print any error.?

    • @SmartProgramming
      @SmartProgramming  6 лет назад +1

      int[][] a= {{10,20,20},{20},{10,30}};
      System.out.println(a[1].length);
      It will print length as "1" as in second position there is only one element i.e. 20
      If you are new, Please subscribe to get updates about new videos in the following link:
      ruclips.net/user/smartprogramming
      Below are the links of all the tutorials in java :
      1. Java Tutorials for Beginners : ruclips.net/video/J1TPKWIPFaE/видео.html
      2. Control Statements in Java (with programs and patterns) : ruclips.net/video/OUZkdKFeuK0/видео.html
      3. Arrays in Java (With Algorithms) : ruclips.net/video/dRrjjotgniA/видео.html

  • @naveentandon2882
    @naveentandon2882 4 года назад +1

    Thank you so much Sir ..... may God bless you always🤗🤗🙇‍♀️🙇‍♀️

  • @rubalrandev2960
    @rubalrandev2960 5 лет назад +1

    I am getting java training from very higher institute , but. I dont understand the concepts there. I must say that ur explanation is much better than them ... sir thanku so much for making these videos and explain us in easy way .

  • @ShaikRehman-f9m
    @ShaikRehman-f9m 3 месяца назад +1

    Thank you sir

  • @ShaikRehman-f9m
    @ShaikRehman-f9m 3 месяца назад +1

    Thank you sir

  • @SS-fz6qt
    @SS-fz6qt 3 года назад +2

    Very well explained. Thank you Sir for great efforts.

    • @SmartProgramming
      @SmartProgramming  3 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Shop With Us: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @shreyasharma9731
    @shreyasharma9731 4 года назад +2

    Sir pllz make a video to explain... How to print a matrix using Buffer reader or string ...pllz sir..I really need this video

  • @muzzammilehtisham7683
    @muzzammilehtisham7683 5 лет назад +3

    Can we print 2-D array by using for each loop?

    • @SmartProgramming
      @SmartProgramming  5 лет назад

      sure, we can print the array by using for each loop also.
      If you are new, Please subscribe to get updates about new videos in the following link:
      ruclips.net/user/smartprogramming
      Below are the links of all the tutorials in java :
      1. Java Tutorials for Beginners : ruclips.net/video/J1TPKWIPFaE/видео.html
      2. Control Statements in Java (with programs and patterns) : ruclips.net/video/OUZkdKFeuK0/видео.html
      3. Arrays in Java (With Algorithms) : ruclips.net/video/dRrjjotgniA/видео.html

  • @gamegiggles3000
    @gamegiggles3000 6 лет назад +2

    Sir Is length definition already stored in compiler or we can write anything in place of length. Is length is a keyword.

    • @SmartProgramming
      @SmartProgramming  6 лет назад +2

      length is predefined variable in array class and it can be directly accessed by using array name.

  • @ShivKumar-mq4et
    @ShivKumar-mq4et 6 лет назад +2

    Thanks sir to give better solution of 2d array

    • @SmartProgramming
      @SmartProgramming  6 лет назад

      Hello Shiv Kumar,
      Thanks a lot for your valuable feedback and support.
      If you are new, Please subscribe to get updates about new videos in the following link:
      ruclips.net/user/smartprogramming
      Below are the links of all the tutorials in java :
      1. Java Tutorials for Beginners : ruclips.net/video/J1TPKWIPFaE/видео.html
      2. Control Statements in Java (with programs and patterns) : ruclips.net/video/OUZkdKFeuK0/видео.html
      3. Arrays in Java (With Algorithms) : ruclips.net/video/dRrjjotgniA/видео.html

  • @syedumairanwar5759
    @syedumairanwar5759 4 года назад +2

    Thank you sir for clarifying our doubts in java. Trust me sir this is my first programming language and with your help it seems too easy sir.
    Only one request to you sir please make one video on HashMap in java please sir🙏

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Sure,
      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @engineers-blog
    @engineers-blog 6 лет назад +1

    public class Array1 {
    public static void main(String[] args) {
    int[] a = { 12, 20, 56 };
    for (int i = 1; i

  • @mdmoinuddin6168
    @mdmoinuddin6168 2 года назад

    thank you🙏🙏 sir...... v. v. i. tutorial for me.. for solving my 2-D array s problem s

  • @tilakrajchoubey5534
    @tilakrajchoubey5534 3 года назад +1

    Nice one

  • @naincysahu5798
    @naincysahu5798 Год назад +1

    Best java teacher ever...
    Very well explanation sir😌..
    Thank you very much sir for this informative video🤩...

    • @SmartProgramming
      @SmartProgramming  Год назад

      Thanks a ton.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Shop With Us: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram : instagram.com/smart_programming

  • @zkhan2023
    @zkhan2023 4 года назад +1

    Best Deepak sir, please provide a project on any topic so that we can solve by java.thanks sir

  • @NavnoorSinghRollno
    @NavnoorSinghRollno 2 года назад +1

    🤟🤟🤟🤟👌👌👌👌

  • @roopagaur8834
    @roopagaur8834 5 лет назад +2

    Superb teaching 👌👌

    • @roopagaur8834
      @roopagaur8834 5 лет назад +1

      Such a nice explanation. Great thanks a lot.

    • @SmartProgramming
      @SmartProgramming  5 лет назад

      Hello Roopa Rachoti..!!
      Thanks a lot for your valuable feedback and support.
      Get updated to my new videos in the following link:
      ruclips.net/user/smartprogramming
      Below are the links of all the tutorials in java :
      1. Java Tutorials for Beginners : ruclips.net/video/J1TPKWIPFaE/видео.html
      2. Control Statements in Java (with programs and patterns) : ruclips.net/video/OUZkdKFeuK0/видео.html
      3. Arrays in Java (With Algorithms) : ruclips.net/video/dRrjjotgniA/видео.html
      4. OOPs Concepts in Java : ruclips.net/video/7WhnYwoBY24/видео.html?

  • @pavannagdive9414
    @pavannagdive9414 Месяц назад

    Samzane me koi kasar nahi chhodi sir thank you very very much🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🫡

  • @saaduddin8388
    @saaduddin8388 Год назад

    sir why you don't use intellij app, by the way thank you for superb lecture

  • @Luffy_2804
    @Luffy_2804 Год назад +1

    underrated ho sir ap 🥲🥲🥲🥲🙂

  • @NavnoorSinghRollno
    @NavnoorSinghRollno 2 года назад +1

    👍👍👍👍

  • @pravatajena7972
    @pravatajena7972 5 лет назад +2

    Isko scanner class se karshkte he kya...user se input lekar

    • @SmartProgramming
      @SmartProgramming  5 лет назад +1

      ya, we can do this by taking user input.
      If you are new, Please subscribe to get updates about new videos in the following link:
      ruclips.net/user/smartprogramming
      Below are the links of all the tutorials in java :
      1. Java Tutorials for Beginners : ruclips.net/video/J1TPKWIPFaE/видео.html
      2. Control Statements in Java (with programs and patterns) : ruclips.net/video/OUZkdKFeuK0/видео.html
      3. Arrays in Java (With Algorithms) : ruclips.net/video/dRrjjotgniA/видео.html

  • @ashay_g_jain
    @ashay_g_jain 3 года назад +1

    +1

  • @roshnirp9696
    @roshnirp9696 4 года назад +1

    aapke vedios koi bhi dislike kese kar sakta he sir .....aap great ho really aapka teaching way superb he......thanks for all vedios .......

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @akshaybhardwaj131
    @akshaybhardwaj131 2 года назад +1

    Great explain 🍷🍷🍷❤️❤️

    • @SmartProgramming
      @SmartProgramming  2 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Shop With Us: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram : instagram.com/smart_programming

  • @hustlescene
    @hustlescene 4 года назад +1

    sir please make a vedio on array of objects.....really need it

  • @harruram3811
    @harruram3811 4 года назад

    why two times used sop what 2nd sop is printing??

  • @dishapatil9313
    @dishapatil9313 4 года назад +1

    you are great. It helped me a lot. THankyou sir!!!!

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @testinginsights-muktasharma
    @testinginsights-muktasharma 6 лет назад +4

    Sir, you are great! Please keep giving interview tips on the topic you teach.

  • @minakshikamboj2183
    @minakshikamboj2183 6 лет назад +2

    thanku sir.....

  • @srikanthchincholi481
    @srikanthchincholi481 4 года назад +1

    Wonderful and great sir Thank you so much

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Amazon Store: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @vansikasingh3228
    @vansikasingh3228 4 года назад +1

    thank you so much sir!

  • @subhamshaw7755
    @subhamshaw7755 6 лет назад +1

    Thank you Deepak sir
    I am very much benefited by this video

    • @SmartProgramming
      @SmartProgramming  6 лет назад

      Hello Subham Shaw,
      Thanks a lot for your valuable feedback and support.
      If you are new, Please subscribe to get updates about new videos in the following link:
      ruclips.net/user/smartprogramming

  • @gauravpise4628
    @gauravpise4628 3 года назад +1

    You are a great teacher 👍🙏❤

  • @fardilviews
    @fardilviews 3 года назад

    Love from Bangladesh.

  • @India_11111
    @India_11111 Год назад +1

    Here i see array and found that array is clear very concept and step by step👍👍👍👍

    • @SmartProgramming
      @SmartProgramming  Год назад

      Keep Going on.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Shop With Us: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram : instagram.com/smart_programming

  • @Royalkingstore
    @Royalkingstore 2 года назад

    Thank u 🙏 sir very helpful

  • @nilvarma6343
    @nilvarma6343 4 года назад +1

    Best teacher in world for Hindi medium students

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Amazon Store: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @vinayakmore858
    @vinayakmore858 Год назад

    Superb sir
    Thank you...

  • @udayasubedi8725
    @udayasubedi8725 Год назад

    Smart Programming is the best❤❤

  • @Descor.
    @Descor. 5 лет назад +1

    How to take runtime values in a jagged array???

    • @SmartProgramming
      @SmartProgramming  5 лет назад

      Hello vikram joya,
      Array cannot take runtime values.
      If you are new, Please subscribe to get updates about new videos in the following link:
      ruclips.net/user/smartprogramming
      Below are the links of all the tutorials in java :
      1. Java Tutorials for Beginners : ruclips.net/video/J1TPKWIPFaE/видео.html
      2. Control Statements in Java (with programs and patterns) : ruclips.net/video/OUZkdKFeuK0/видео.html
      3. Arrays in Java (With Algorithms) : ruclips.net/video/dRrjjotgniA/видео.html
      4. OOPs Concepts in Java : ruclips.net/video/7WhnYwoBY24/видео.html

  • @sahildilkash5641
    @sahildilkash5641 4 года назад +1

    Sir aap itne ache se samjhate ho k aapke wo topic complete hone se pahle hi samajh me aajata hai to koi dot hone ki chance hi nhi hoti hai..
    Thankyou sir bhut acha lagta hai aapke video se padhai karne me

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @S_square_family
    @S_square_family 4 года назад

    Sir garbage collection ka video banai n .
    Please sir jaldi

  • @aryanwolfox6390
    @aryanwolfox6390 6 лет назад +2

    Good sir .
    thanks sir.
    Nice 👍

  • @shivamkumar-qs7er
    @shivamkumar-qs7er 5 лет назад +1

    Amazing again!

  • @gauravchopra3340
    @gauravchopra3340 Год назад

    Sir is kt with complete dsa

  • @shashankshekhar9413
    @shashankshekhar9413 5 лет назад

    How to take input ftom user in 2d Arrays .... Please tell me the code.
    Thanks and regards in advance.

  • @aqibrasool6298
    @aqibrasool6298 5 лет назад

    Very well but sir how give input from user in 2d array???????????

  • @arijitmondal3642
    @arijitmondal3642 4 года назад +1

    Thanks sir for clearifying my ideas.....!!!!!!

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

    • @arijitmondal3642
      @arijitmondal3642 4 года назад

      @@SmartProgramming sir i watched almost of your video...and i made a clear concept on java...now i am going to watch string related videos in java..i also share your video to everyone...u make our career really very bright...thanks....we need your company so sir please continue making videos on java...i am reallly waiting for your new videos on java

  • @shadabalam3412
    @shadabalam3412 2 года назад +1

    Excellent

  • @dscreations1534
    @dscreations1534 5 лет назад

    love your videos sir ! I learned core java within 1.5 months beacause of your videos!!!

  • @fawadshahzad3382
    @fawadshahzad3382 4 года назад +1

    you are a star. you have a great way of teaching. appreciate you.

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @rakeshkumaryadav1117
    @rakeshkumaryadav1117 2 года назад

    No one can teach with such depth and explanation wonderful explanation each and every point
    Who is reading this comment just go through this video and then will realize what is level of teaching then you will comment automatically 😀

  • @mallickshahzain499
    @mallickshahzain499 Год назад

    Thankyou so much sir.....

  • @sunnychaudhary9834
    @sunnychaudhary9834 4 года назад +1

    Sir ur way of teaching is awsome thnk you

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @saranghole3948
    @saranghole3948 2 года назад

    I got one of video while searching video on JAVA. And now i am watching all his videos.

  • @anilkumar-nq7yn
    @anilkumar-nq7yn 5 лет назад

    Great videos for basic understanding and you wont believe i am watching your videos in Canada and i cant resist my self from commenting keep going !!!!!

  • @vedarthcards8893
    @vedarthcards8893 4 года назад +1

    No one can explain like you Sir.
    Thanks.

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback. Please subscribe this channel.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @mittal002
    @mittal002 5 лет назад

    Excellent sir, your teaching way is awesome...

  • @angelina101100
    @angelina101100 2 года назад

    Thank you so much Sir, what a deeply explanation and details of each and every thing. Hats off for all the efforts you are taking .

  • @shubhampatidar1814
    @shubhampatidar1814 2 года назад

    one and only deepak sir

  • @ranjitbeck9603
    @ranjitbeck9603 5 лет назад +2

    Thank ...u......sir

    • @SmartProgramming
      @SmartProgramming  5 лет назад

      Hello Ranjit Beck
      Thanks a lot for your valuable feedback and support.
      Get updated to my new videos in the following link:
      ruclips.net/user/smartprogramming
      Below are the links of all the tutorials in java :
      1. Java Tutorials for Beginners : ruclips.net/video/J1TPKWIPFaE/видео.html
      2. Control Statements in Java (with programs and patterns) : ruclips.net/video/OUZkdKFeuK0/видео.html
      3. Arrays in Java (With Algorithms) : ruclips.net/video/dRrjjotgniA/видео.html
      4. OOPs Concepts in Java : ruclips.net/video/7WhnYwoBY24/видео.html?

  • @MahtabAlam-eu2hb
    @MahtabAlam-eu2hb 4 года назад

    Hello sir I have a doubt about for each loop. SIR can we use for each loop in 2D array

  • @anupamjha2362
    @anupamjha2362 2 года назад

    There are so many great yt channels on Java. Many of them are very good !! But Deepak Sir beats all with a margin 🙏 !!

  • @rajeshkadam2434
    @rajeshkadam2434 2 года назад +1

    Legendary Explanation 🙏

    • @SmartProgramming
      @SmartProgramming  2 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Shop With Us: www.amazon.in/shop/smartprogramming
      Facebook Page : facebook.com/smartprogramming.india
      Instagram : instagram.com/smart_programming

  • @bhavnasood8166
    @bhavnasood8166 3 года назад

    Thankuu vry vry much....

  • @knowledgejunctionterminal4080
    @knowledgejunctionterminal4080 2 года назад

    thank you sir

  • @sahara321
    @sahara321 Год назад

    ❤❤❤❤❤ excellent💯

  • @mayuriparit8899
    @mayuriparit8899 5 лет назад

    Its too good and in a very easy and simple manner u explained. u made easy to understand 😊

  • @ghulammujtabaadil2247
    @ghulammujtabaadil2247 4 года назад +1

    the best java teacher i have ever seen . stay blessed sir .

    • @SmartProgramming
      @SmartProgramming  4 года назад

      Thank you for your feedback.
      Below are some of the links for more videos and information :
      Java Tutorials Serial Wise : ruclips.net/p/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b
      Website : www.smartprogramming.in
      Projects & Courses Website : courses.smartprogramming.in
      Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
      Follow Us On :
      Facebook Page : facebook.com/smartprogramming.india
      Instagram Page : instagram.com/smart_programming

  • @karanahuja0328
    @karanahuja0328 5 лет назад +1

    Thanks sir. Very helpful.

    • @SmartProgramming
      @SmartProgramming  5 лет назад

      Hello Karan,
      Thanks a lot for your valuable feedback and support.
      Get updated to my new videos in the following link:
      ruclips.net/user/smartprogramming
      Below are the links of all the tutorials in java :
      1. Java Tutorials for Beginners : ruclips.net/video/J1TPKWIPFaE/видео.html
      2. Control Statements in Java (with programs and patterns) : ruclips.net/video/OUZkdKFeuK0/видео.html
      3. Arrays in Java (With Algorithms) : ruclips.net/video/dRrjjotgniA/видео.html
      4. OOPs Concepts in Java : ruclips.net/video/7WhnYwoBY24/видео.html
      5. Exception Handling in Java : ruclips.net/video/y-NlcLcxiKY/видео.html

  • @devrajsingh4680
    @devrajsingh4680 6 месяцев назад

    best taecher

  • @prashantpandey6367
    @prashantpandey6367 3 года назад

    Excellent sir

  • @matrixgamer4821
    @matrixgamer4821 9 месяцев назад

    best teacher

  • @MuhammadAwais-rp8po
    @MuhammadAwais-rp8po 5 лет назад

    Superb teaching method!

  • @tarunasharma82
    @tarunasharma82 4 года назад

    brilliant

  • @30newschannel779
    @30newschannel779 5 лет назад

    Thanks

  • @rahmatzada2180
    @rahmatzada2180 6 лет назад +1

    your teaching method is amazing .... thank you

    • @SmartProgramming
      @SmartProgramming  6 лет назад

      Hello rahmat zada,
      Thank you for your valuable feedback.
      If you are new, Please subscribe to get updates about new videos in the following link:
      ruclips.net/user/smartprogramming

    • @rahmatzada2180
      @rahmatzada2180 6 лет назад +1

      please make some videos on inheritance, method overloading and overriding

    • @SmartProgramming
      @SmartProgramming  6 лет назад

      sure, after arrays OOP's concepts will be uploaded, and inheritance, method overloading and overriding will be explained very deep, even for java certification level, but it will take some time, till keep learning.
      Thank you for your support

  • @mr.rocker1092
    @mr.rocker1092 4 года назад

    thanku sir for helping us in exams