P27 - Arrays (Multi Dimensional) in Java | Core Java | Java Programming |

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • In this video, I have explained about "Arrays (Multi Dimensional) in Java".
    Points covered in this video:
    ❇️ What is an Array? Why do we need an Array?
    ❇️ Different types of arrays in Java?
    ❇️ What are two dimensional & jagged arrays?
    ❇️ Different ways of initializing two-dimensional arrays
    ❇️ Different ways of initializing jagged arrays
    ❇️ What are default values of array elements?
    🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶
    ▶ Next Video link: • P28 - Looping statemen...
    ◀ Previous Video Link: • P26 - Arrays (Single D...
    📒 Assignment video link: • Core Java - Assignment...
    ↔ Core Java in Telugu Playlist link: bit.ly/3KMlbBk
    ✴ Checkout my other playlists: bit.ly/3gLIAVL
    ☕ Buy me a coffee: bit.ly/33ljBWc
    ===================================
    ===================================
    Connect me @
    🔗 Website - www.hyrtutoria...
    🔗 Telegram - t.me/hyrtutorials
    🔗 Facebook - / hyrtutorials
    🔗 LinkedIn - / hyrtutorials
    🔗 Twitter - / hyrtutorials
    🔗 Instagram - / hyrtutorials
    ===================================
    ===================================
    🙏 Please Subscribe🔔 to start learning for FREE now, Also help your friends in learning the best by suggesting this channel.
    #hyrtutorialstelugu #selenium #java #telugu
    Java programming by Yadagiri Reddy

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

  • @HYRTutorialsTelugu
    @HYRTutorialsTelugu  2 года назад +5

    📌 Core Java in Telugu Playlist link: bit.ly/3KMlbBk
    ✴ Checkout my other playlists: bit.ly/3gLIAVL
    ☕ Buy me a coffee: bit.ly/33ljBWc

  • @HSC-us8eb
    @HSC-us8eb 8 месяцев назад +37

    Hi Bro, i really understood everything from this video crisp and clear even about debugging but i really want you to do one video on "DEBUGGING"🙏🙏. Plz consider it, i know there are lot of other channels that explains it, but ur way of explaining keeps us entertained(like without skipping a second) and engaing😶‍🌫😶‍🌫. So guys, whoever want one video especially on "DEBUGGING" plz like this comment or comment as "YES" 🙏🙏so that he will make one video based on the number of people otherwise he might not consider . So, ur wish guys🙌 and sir even though there are no likes, please consider making a video of "DEBUGGING".🤗🤗

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu  2 месяца назад +2

      Thanks buddy 🙂
      Yeah I had planned for a separate video on debugging but just couldn't do it in time due to some personal time issues. Will plan in the coming days buddy

  • @ChandraSekhar-wq5fz
    @ChandraSekhar-wq5fz Год назад +22

    I have cleared the assignment without watching your assignments solution video which built lots of confidence. Thank you so much..
    //1 . sum of all the elements
    public static void main(String[] args) {
    int[][] arr = new int[][] { { 1, 8, 4 }, { 9, 7, 2},{7,6,4} };
    int sum=0;
    for (int i = 0; i < arr.length; i++) {
    for (int j = 0; j < arr[i].length; j++) {
    sum=sum+arr[i][j];
    }
    }System.out.println(sum);
    }
    }
    //out Put-48
    //2. Add the elements in an array and print it in the console
    public static void main(String[] args) {
    int[][] arr1 = new int[][] { { 1, 2, 1 }, { 9, 7, 2 },{7,6,4} };
    int[][] arr2 = new int[][] { { 2, 6, 8 }, { 0, 1, 3 },{1,2,4} };
    int[][] arr3 = new int[3][3];
    for (int i = 0; i < arr1.length; i++) {
    for (int j = 0; j < arr1[i].length; j++) {
    arr3[i][j] = arr1[i][j] + arr2[i][j];
    System.out.print(arr3[i][j] + " ");
    }
    System.out.println();
    }
    }
    }
    //out Put-
    3 8 9
    9 8 5
    8 8 8
    //3. Create an array with squares of the existing array
    int[][] arr1 = new int[][] { { 2, 3, 5 }, { 0, 1, 3 } ,{1,2,4}};
    int[][] arr2 = new int[3][3];
    for (int i = 0; i < arr1.length; i++) {
    for (int j = 0; j < arr1[i].length; j++) {
    arr2[i][j] = arr1[i][j] * arr1[i][j];
    System.out.print(arr2[i][j] + " ");
    }
    System.out.println();
    }
    }
    //out Put
    4 9 25
    0 1 9
    1 4 16
    //4. Interchange the values of an array by transposing the index value
    //5. Create an array based on condition and print it in the console
    int[][] arr1 = new int[][] { {1,2,1},{9,7,2},{7,6,4}};
    int[][] arr2 = new int[][] { {1,6,1},{0,7,3},{1,6,4}};
    int[][] arr3 = new int[3][3];
    for (int i = 0; i < arr2.length; i++) {
    for (int j = 0; j < arr2[i].length; j++) {
    if (arr1[i][j] == arr2[i][j]) {
    arr3[i][j] = 1;
    } else {
    arr3[i][j] = 0;
    }
    System.out.print(arr3[i][j] + " ");
    }
    System.out.println();
    }
    //Out put
    1 0 1
    0 1 0
    0 1 1
    //6. Interchange the values of an array by transposing the index value
    int[][] arr1 = new int[][] { { 1, 8, 4 }, { 9, 7, 2 } ,{7,6,4}};
    int[][] arr2 = new int[3][3];
    for (int i = 0; i < arr1.length; i++) {
    for (int j = 0; j < arr1[i].length; j++) {
    arr2[i][j] = arr1[j][i];
    System.out.print(arr2[i][j] + " ");
    }
    System.out.println();
    } }
    //Input out Put
    1 8 4 1 9 7
    9 7 2 8 7 6
    7 6 4 4 2 4

  • @srinivasronyy2698
    @srinivasronyy2698 Год назад +25

    your assignments are so useful for us to go deep in to the concept😊😊😊😊😊

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu  Год назад +9

      That's the intent of assignments buddy.
      Good to know that they are helping you

  • @vinaykumarkinnera5981
    @vinaykumarkinnera5981 2 года назад +9

    Bro you have a excellent teaching skills 👌 , the way of your explanation is super.
    Iam following your core Java course don't give up, please complete full course of core Java 🙏
    We are waiting for your next video

  • @jagadishreddy7745
    @jagadishreddy7745 10 месяцев назад +5

    Awesome explanation and very easy to learn regional language lo superb 👏🏻👏🏻

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

    Hurry, This much of detailed Mutli DImensional array explanation is clear bruh

  • @ganeshv045
    @ganeshv045 Год назад +3

    In-depth explanation, thank you so much.

  • @ramua5200
    @ramua5200 8 месяцев назад +3

    Thank you so much for your support

  • @shaheenashaheen4112
    @shaheenashaheen4112 3 месяца назад +2

    Excellent and great sessions 👏👏

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

    Thank you so much❤❤, I have trying to learn since from 3 years is not possible when i watched your videos really every one will get intrest bcz of ur simple and smart explanation on java.
    The way of ur explaining is fabulous. very easy to capture ur language and java😊😊

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

    thank you sir for the detail explanation of arrays. this was the best I never heard

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

    sir very excellent explanation. Very helpful for beginners.

  • @pradeepkumarmalluri
    @pradeepkumarmalluri 9 месяцев назад +1

    thankyou sir for providing amazing course🙇‍♂🙇‍♂🙇‍♂

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

    i understood very easily, thanks once again for clear explanation.

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

    Thank you so much sir and one request from my side...if possible please share answers of assignments sir.

  • @Apple-cl5sj
    @Apple-cl5sj Год назад +3

    Thank you so much for your time and valuable content

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

    Superb ga explanation ichav Anna

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

    Thnku soo much sir I never find such clear explanation before ✨

  • @KATAKAMANJANIAKANKSHA
    @KATAKAMANJANIAKANKSHA 3 месяца назад

    Assignments give a good understanding and deep knowledge of coding and logic. Video is handy

  • @rajyalakshmimudadla4643
    @rajyalakshmimudadla4643 16 дней назад +1

    Super Explanation bro

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

    Bro your teaching is very v
    Wanderful please continue bro 🙏🙏🙏🙏

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

    Thank you so much sir. Clear Explaination about the arrays❤❤

  • @THALA--7
    @THALA--7 6 дней назад

    i did 2nd question like this :
    import java.util.Scanner;
    public class numbers5 {
    public static void main(String[] args) {
    Scanner sc=new Scanner(System.in);
    System.out.println("enter array1 row size");
    int arrsiz1r= sc.nextInt();
    System.out.println("enter array1 coloumn size");
    int arrsiz1c=sc.nextInt();
    int [][]arr1=new int[arrsiz1r][arrsiz1c];
    System.out.println("enter array1 values");
    for(int i=0;i

  • @sureshgongali7680
    @sureshgongali7680 Год назад +3

    Super explaining sir
    Python css. Vedios sir

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

    Thank you sir

  • @KalpanaBattula-g1q
    @KalpanaBattula-g1q 9 дней назад +1

    Thank you so much sir 🙏

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

    got confidence after watching all the videos

  • @saiKumar-iy6qt
    @saiKumar-iy6qt 2 месяца назад +2

    create an array based on the mentioned conditions and print it in the console .? question no 5 (Assignment) there is a small mistake sir., that is 3rd row 3rd column in input 1: (4) and same in input 2: 3rd row- 3rd column (4) that is matching element so the answer is (1) in the output 3rd row - 3rd column..

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

    Hi Anna, No words to say about the video it is awesome and easy to understand the full concept. Thanks a lot for the video

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

    Thank you brother for your effective information to teach us

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

    excellent way of teaching .............

  • @TELUGU-TECH-LEARNER
    @TELUGU-TECH-LEARNER Год назад

    Nyc Explanation Guru Ji Am Purchased Membership Account For You Selenium Classes Thank You So Much Guruji

  • @seema...3498
    @seema...3498 Месяц назад

    Very well said sir.
    Big thanks

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

    Tq anna chala baga explain chasavu

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

    Hi sir..firstly thank you so much....chala clear ga cheptunnaru.. can u also gave assignment answers ?

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

    Thank you so much.i have seen so many videos but in this video i learned clearly about multi Dimensional Array.

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

    Next level explanation sir

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

    Nice dude
    when i seen video
    Fell good dude

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

    your videos nice sir🥰🙏

  • @nagallashyamkumar3203
    @nagallashyamkumar3203 16 часов назад

    thanks a lot sir

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

    Tq sir
    Waiting for next video

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

    It's a gud session..can you please provide the output of all the programs which you are giving us as assignment..

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

    assingment done bro but first one only some thougn remaining all easy

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

    Thank you annaya... very good explanation....

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

    good explanation please upload total core java classes 🙏🙏

  • @chinnikrishna6800
    @chinnikrishna6800 11 месяцев назад

    Chala baga explain chesaru,
    Thanks a lot sir

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

    Sir, i unable to crack the 4tb problem.. i only used looping statements and conditional statements for solve this problem. i am getting right output, for ex: input-1 lo 2 element, input-2 lo two times repeat ayyindhi, so i am getting 2 is two times in console. Please help me.

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

    Sir i have a doubt
    Q= i++ ante adi use chesedi increment avvadanki use chesthamu kada sir

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

    Your explanation is very very very........good bro

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

    Tq so much sir 🙏🏻
    For ur explanation

  • @user-ke1fw3hz8w
    @user-ke1fw3hz8w 2 месяца назад +1

    Sir sub arrays midha oka video cheyandi

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu  2 месяца назад

      Sub arrays ane daani meeda inko video em ledu buddy. its just a concept in the array buddy. if you understand this video then sub arrays is easily understandable buddy

  • @NaveenNaveen-zr3or
    @NaveenNaveen-zr3or Год назад

    thank you Brother for the detail explanation of arrays. this was the best

  • @P.Anji579
    @P.Anji579 Год назад +1

    Thanks for sharing information anna

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

    Very well explained 👍👍

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

    Core java complete cheyandi sir ..and spring boot medha videos cheyandi .

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

    Sir do discuss assignment questions in the start of session

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

      You can check the solutions video link in the description buddy

  • @topicstory
    @topicstory 6 дней назад

    code first for loop nundhi read chasthundha lakapothay second for loop nundhi outter loop ki velthundha

  • @bharathpybodi2842
    @bharathpybodi2842 3 месяца назад +1

    excellent sir

  • @Kings238
    @Kings238 10 месяцев назад +1

    This is for me 😘🤩😍 yaaaaa huuuuuuuuuuuuuuu thank you sir

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

    nice explanations sir thank u so much

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

    Awesome explanation bro

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

    Thank you for sharing knowledge bro

  • @reshmashaik4682
    @reshmashaik4682 Год назад +3

    Sir, I'm a fresher. If i follow all your videos then i will get job?

  • @villagegirlvihari
    @villagegirlvihari 4 месяца назад

    Really usefull😅😅thank you soo much anna inka programms explanation ivvocchukadha

  • @VinayKumar-cm2nn
    @VinayKumar-cm2nn Год назад +1

    Idi konvcham tricky vundi ardham cheskodaniki,will watch again

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

    Hello, have u uploaded video on how to capture screenshot on test failure for parallel execution with TESTNG?

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

      Checkout this video buddy:
      ruclips.net/video/S5wJYCHrUQ4/видео.html

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

    Hello sir,i am trying to do reverse array using jagged array but the same logic doesn't seems to be working..can u let me know if we have any size restrictions for jahged arrays when we perform such actions

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

    Nice vedio and good explanation

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

    nice explaining

  • @nayeeumshaik1099
    @nayeeumshaik1099 Месяц назад +1

    anna system .out.println{arr[i][j]+" " e space enduku ichaaru can u explain and kinda empty sysout enduku print chesaru can u explain

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

      Just formatting kosam buddy. nuvvu aa spaces and extra sysout ivvakunda try chei then you will se ethe difference in the printed output

  • @Sree-Sree-
    @Sree-Sree- Год назад +1

    Array programming logics cheppandi sir. like only even index num print or odd num index print etc..

  • @SivaKumar-bd8hm
    @SivaKumar-bd8hm 2 года назад +1

    good explanation sir

  • @naguboyinachaitanya234
    @naguboyinachaitanya234 10 месяцев назад +2

    Matrix Multiplication is a good problem, sir

  • @user-fk9uo8dh4l
    @user-fk9uo8dh4l 7 месяцев назад +2

    Provide Assignment answers please

  • @ShaikIsmailjabibulla-ry6lj
    @ShaikIsmailjabibulla-ry6lj 11 месяцев назад +1

    Super sir🎉🎉🎉🎉❤

  • @user-lz2on1eb7f
    @user-lz2on1eb7f Год назад +1

    Thank you sir...

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

    Useful👍

  • @chebroluhemanth1013
    @chebroluhemanth1013 9 месяцев назад +1

    Sir please మీరు assignment ఇస్తున్నారు..వాటిలో కూడా కొన్ని examples చూపించి ఇస్తే బాగుంటుంది..సార్ ఎందుకంటే అస్సలు తెలియని వారం వున్నాం

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

      Check the description for the solutions video link buddy

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

    Sir please explain Assignment Questions also in the video

  • @privateac5506
    @privateac5506 2 месяца назад +1

    nice video anna

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

    user input tisukoni example chepthe inka baga ardamavuthundi bro

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

    Please continue remaining concepts in Java sir

  • @A-Leelamohan
    @A-Leelamohan Год назад +1

    Tnq bro❤

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

    Thank you

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

    thank you anna explain of java

  • @tejareddy199
    @tejareddy199 7 месяцев назад +1

    great!

  • @maheshnagisetty436
    @maheshnagisetty436 3 месяца назад

    super explanation sir

  • @sindhujagalam3007
    @sindhujagalam3007 Год назад +3

    6.class Transpose {
    public static void main(String[] args) {
    int arr[][]={{2,3,5},{9,7,2},{7,6,4}};
    int arr2[][]=new int[3][3];
    int temp;
    for(int i=0;i

  • @harshaharsha6681
    @harshaharsha6681 10 месяцев назад

    Just superb🎉🎉🎉🎉🎉

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

    Good vedio sir

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

    Hello sir , nenu debug chesetappudu printStream ane code vastundhi sir meri chesinattu ravatlesu em cheyali sir cheppandhi please

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

      Can u send me the screenshots or video on hyadagirireddytutorials@gmail.com

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

    Bro Selenium Tester Roles and Responsilblity Video Chesyandi Resume ela prepare chheyali ..

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

    int size =0;
    for (int i = 0;i

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

      Just extra line kosam buddy.
      Adi pettakunda execution chesi chudu and petti execution chesi chudu

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

    Please continue the series

  • @user-se5bb7uq7k
    @user-se5bb7uq7k Год назад

    exellent video sir

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

    thank you anna 😊

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

    hello sir, In second assignment question output[3][3] = 8 8 8 not 7 8 8 because intput1[3][1] + input2[3][1] = 8

  • @bommanareddaiah3950
    @bommanareddaiah3950 5 месяцев назад

    Bro meeru advance java concepts cheptara bro jdbc, hibernate, spring frameworks atleast one

  • @mahendradunga9508
    @mahendradunga9508 16 дней назад +1

    Sir how to comments lines will provide all lines in at a time