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

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ธ.ค. 2024

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

  • @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 11 หลายเดือนก่อน +44

    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  4 หลายเดือนก่อน +5

      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 ปีที่แล้ว +31

    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

  • @jagadishreddy7745
    @jagadishreddy7745 ปีที่แล้ว +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

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

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

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

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

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

    thankyouuuuuu so muchhhhh tbh mee teaching vallane naaku coding interest vachindhi....Forever grateful sir...lots of love

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

    In-depth explanation, thank you so much.

  • @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

  • @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.

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

    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

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

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

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

    Superb ga explanation ichav Anna

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

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

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu  18 วันที่ผ่านมา

      Keep learning and keep supporting buddy 🙂

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

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

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

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

  • @Apple-cl5sj
    @Apple-cl5sj ปีที่แล้ว +3

    Thank you so much for your time and valuable content

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

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

  • @shaheenashaheen4112
    @shaheenashaheen4112 6 หลายเดือนก่อน +2

    Excellent and great sessions 👏👏

  • @TELUGU-TECH-LEARNER
    @TELUGU-TECH-LEARNER ปีที่แล้ว

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

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

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

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

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

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

    Chala baga explain chesaru,
    Thanks a lot sir

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

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

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

    Next level explanation sir

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

    Tq anna chala baga explain chasavu

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

    got confidence after watching all the videos

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

    Tq sir
    Waiting for next video

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

    Nice dude
    when i seen video
    Fell good dude

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

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

  • @VinayKumar-cm2nn
    @VinayKumar-cm2nn 2 ปีที่แล้ว +1

    Idi konvcham tricky vundi ardham cheskodaniki,will watch again

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

    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

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu  16 วันที่ผ่านมา

      ohh noo thats not how we should do it buddy

  • @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😊😊

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

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

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

    Super Explanation bro

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

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

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

    Super explaining sir
    Python css. Vedios sir

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

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

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

    Tq so much sir 🙏🏻
    For ur explanation

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

    Very well explained 👍👍

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

    Awesome explanation bro

  • @P.Anji579
    @P.Anji579 ปีที่แล้ว +1

    Thanks for sharing information anna

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

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

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

    good explanation please upload total core java classes 🙏🙏

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

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

  • @ChandraSekhar-wq5fz
    @ChandraSekhar-wq5fz ปีที่แล้ว +1

    Thank you so much for your support..

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

    Thank you for sharing knowledge bro

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

    Nice vedio and good explanation

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

    user input tisukoni example chepthe inka baga ardamavuthundi bro

  • @NaveenNaveen-zr3or
    @NaveenNaveen-zr3or 2 ปีที่แล้ว

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

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

    nice explanations sir thank u so much

  • @Katuri981
    @Katuri981 หลายเดือนก่อน +1

    Hi sir, operations on array element's midha kuda video thisthe bagundedhi sir

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

      It depends on what type of data you are storing buddy. Let's say you are storing string type of data then strings video will help you

    • @Katuri981
      @Katuri981 27 วันที่ผ่านมา

      Not that sir, insert at end, insert at any position like

    • @Katuri981
      @Katuri981 27 วันที่ผ่านมา

      Deletion, search, sort also sir

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu  18 วันที่ผ่านมา

      @@Katuri981 array lo you dont have any methods for those buddy. you can create some helper functions to do that

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu  18 วันที่ผ่านมา

      @@Katuri981 avanni cheppalanmte DSA start cheyyali buddy

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

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

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

    Just superb🎉🎉🎉🎉🎉

  • @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..

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

    Thank you brother for your effective information to teach us

  • @SivaKumar-bd8hm
    @SivaKumar-bd8hm 2 ปีที่แล้ว +1

    good explanation sir

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

    your videos nice sir🥰🙏

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

    excellent sir

  • @rishibhaskerrbng9845
    @rishibhaskerrbng9845 11 หลายเดือนก่อน +2

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

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

    Thank you sir

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

    nice explaining

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

    Useful👍

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

    super explanation sir

  • @saiKumar-iy6qt
    @saiKumar-iy6qt 5 หลายเดือนก่อน +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..

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu  4 หลายเดือนก่อน +1

      Yeah solutions video lo correct chesa buddy

  • @privateac5506
    @privateac5506 4 หลายเดือนก่อน +1

    nice video anna

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

    Good vedio sir

  • @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

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

    exellent video sir

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

    thank you anna explain of java

  • @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:
      th-cam.com/video/S5wJYCHrUQ4/w-d-xo.html

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

    Matrix Multiplication is a good problem, sir

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

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

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

      Check the description for the solutions video link buddy

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

    Please continue remaining concepts in Java sir

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

    Ma clg la kuda intha manchiga chapale anna😍

  • @tejareddy199
    @tejareddy199 10 หลายเดือนก่อน +1

    great!

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

    Sir please explain Assignment Questions also in the video

  • @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

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

    Thank you bro

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

    Please continue the series

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

    Super sir

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

    clear ga chebutunnaru kani assignments ki answer exolanation chesthe better

  • @A-Leelamohan
    @A-Leelamohan ปีที่แล้ว +1

    Tnq bro❤

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

    Thank you

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

    nice reddy

  • @RahulRahul-w8n4h
    @RahulRahul-w8n4h 5 หลายเดือนก่อน +1

    Sir sub arrays midha oka video cheyandi

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

      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

  • @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.

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

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

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

      Check the description for the solutions video link buddy

  • @SRIRAM-ym7jq
    @SRIRAM-ym7jq 2 ปีที่แล้ว +1

    overeall it is an blasting bupper hit video.
    " THAGAIDHE LEEE"

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

    super

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

    Nice

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

    thanks sir

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

    Thank bro, given for assignment .

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

    1.public class sumofelements {
    public static void main(String[] args)
    {
    int[][] arr=new int[3][3];
    arr[0]=new int[] {1,8,4};
    arr[1]=new int[] {9,7,2};
    arr[2]=new int[] {7,6,4};
    int sum=0;
    for(int i=0;i

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

    array strings concept cheppandi sir,concatinating etc

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

      Strings meeda seperate video untundi chudu buddy

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

      @@HYRTutorialsTelugu ok sir thankyou chusanu

  • @JaruguPushpanjali
    @JaruguPushpanjali 11 หลายเดือนก่อน +1

    Thank you sir but ee topics koncham tricky 😊

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

    Hi Sir ,assignment videos kuda cheyandi sir .interviews lo adugutunnaru.please

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

    Tq sir

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

    Hiii sir......
    Actually I need the explanation of Return type in Array concept.

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

      Arrays lo return type enti buddy?
      Method lo return type gurinchi adguthunnva?

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

      Method lo return type array[] concept sir

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

      @@koushikvarma7382 single dimensional array ni return chesinappudu manam method returntype ala specify cheyyali.
      Return types gurinchi already methods video lo explain chesanu buddy