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

  Рет қаралды 117,584

H Y R Tutorials - Telugu

H Y R Tutorials - Telugu

Күн бұрын

Пікірлер: 419
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
📌 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 Жыл бұрын
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 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 Жыл бұрын
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
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Great buddy. Keep it up
@gnanendrakumart3140
@gnanendrakumart3140 Жыл бұрын
4th one raledha
@swathipriya4740
@swathipriya4740 4 ай бұрын
can we do in scanner class???let me know how to do in scanner classes
@letsart7406
@letsart7406 2 ай бұрын
thankyouuuuuu so muchhhhh tbh mee teaching vallane naaku coding interest vachindhi....Forever grateful sir...lots of love
@HYRTutorialsTelugu
@HYRTutorialsTelugu Ай бұрын
Thanks buddy 🙂
@jakeershaik3279
@jakeershaik3279 Жыл бұрын
Hurry, This much of detailed Mutli DImensional array explanation is clear bruh
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@jagadishreddy7745
@jagadishreddy7745 Жыл бұрын
Awesome explanation and very easy to learn regional language lo superb 👏🏻👏🏻
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ganeshv045
@ganeshv045 Жыл бұрын
In-depth explanation, thank you so much.
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@pradeepkavuluri8186
@pradeepkavuluri8186 2 жыл бұрын
Superb ga explanation ichav Anna
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 😊
@TELUGU-TECH-LEARNER
@TELUGU-TECH-LEARNER Жыл бұрын
Nyc Explanation Guru Ji Am Purchased Membership Account For You Selenium Classes Thank You So Much Guruji
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ullangisarvothamaraju996
@ullangisarvothamaraju996 Жыл бұрын
sir very excellent explanation. Very helpful for beginners.
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy
@Trending2698
@Trending2698 2 жыл бұрын
your assignments are so useful for us to go deep in to the concept😊😊😊😊😊
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
That's the intent of assignments buddy. Good to know that they are helping you
@reddysree9536
@reddysree9536 9 ай бұрын
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
@HYRTutorialsTelugu
@HYRTutorialsTelugu 5 ай бұрын
Happy Learning buddy 🙂
@pradeepkumarmalluri
@pradeepkumarmalluri Жыл бұрын
thankyou sir for providing amazing course🙇‍♂🙇‍♂🙇‍♂
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy Learning buddy 🙂
@Apple-cl5sj
@Apple-cl5sj Жыл бұрын
Thank you so much for your time and valuable content
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@kitchensetting5472
@kitchensetting5472 2 жыл бұрын
i understood very easily, thanks once again for clear explanation.
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 😊
@pvenkannababu8128
@pvenkannababu8128 4 ай бұрын
Thank you so much sir. Clear Explaination about the arrays❤❤
@HYRTutorialsTelugu
@HYRTutorialsTelugu Ай бұрын
Keep learning and keep supporting buddy 🙂
@rameshgandham6705
@rameshgandham6705 Жыл бұрын
Tq anna chala baga explain chasavu
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@chinnikrishna6800
@chinnikrishna6800 Жыл бұрын
Chala baga explain chesaru, Thanks a lot sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 🙂
@vinaykumarkinnera5981
@vinaykumarkinnera5981 2 жыл бұрын
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
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thankyou buddy
@nikhillokesh7392
@nikhillokesh7392 2 жыл бұрын
@@HYRTutorialsTelugu please sir, do continue the remaining videos?
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Sure buddy
@knowhow1944
@knowhow1944 2 жыл бұрын
thank you sir for the detail explanation of arrays. this was the best I never heard
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy
@sudeepthireddy102
@sudeepthireddy102 Жыл бұрын
Thank you so much sir and one request from my side...if possible please share answers of assignments sir.
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Description lo link undi chudu buddy
@shaheenashaheen4112
@shaheenashaheen4112 6 ай бұрын
Excellent and great sessions 👏👏
@HYRTutorialsTelugu
@HYRTutorialsTelugu 5 ай бұрын
Thanks buddy 🙂
@manasareddy7529
@manasareddy7529 Жыл бұрын
Thnku soo much sir I never find such clear explanation before ✨
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@dammalapaduroyalyadavs9777
@dammalapaduroyalyadavs9777 Жыл бұрын
😊
@KATAKAMANJANIAKANKSHA
@KATAKAMANJANIAKANKSHA 7 ай бұрын
Assignments give a good understanding and deep knowledge of coding and logic. Video is handy
@HYRTutorialsTelugu
@HYRTutorialsTelugu 5 ай бұрын
Thanks buddy 🙂
@polunirosha5530
@polunirosha5530 Жыл бұрын
Thank you annaya... very good explanation....
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy
@sureshgongali7680
@sureshgongali7680 Жыл бұрын
Super explaining sir Python css. Vedios sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@naveenkumar6671
@naveenkumar6671 2 жыл бұрын
Bro your teaching is very v Wanderful please continue bro 🙏🙏🙏🙏
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 😊
@tharunyarnam1380
@tharunyarnam1380 Жыл бұрын
Next level explanation sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 🙂
@NagababuYadlapalli
@NagababuYadlapalli Жыл бұрын
excellent way of teaching .............
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ChandraSekhar-wq5fz
@ChandraSekhar-wq5fz Жыл бұрын
Thank you so much for your support..
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@ECpacharivinay
@ECpacharivinay Жыл бұрын
user input tisukoni example chepthe inka baga ardamavuthundi bro
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Assignment ichanu buddy anduke
@rajyalakshmimudadla4643
@rajyalakshmimudadla4643 3 ай бұрын
Super Explanation bro
@HYRTutorialsTelugu
@HYRTutorialsTelugu 3 ай бұрын
Thanks buddy 😊
@avulayamuna716
@avulayamuna716 2 жыл бұрын
Hi sir..firstly thank you so much....chala clear ga cheptunnaru.. can u also gave assignment answers ?
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 😊 Check the description buddy
@VinayKumar-cm2nn
@VinayKumar-cm2nn 2 жыл бұрын
Idi konvcham tricky vundi ardham cheskodaniki,will watch again
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Yes buddy
@VinayKumar-cm2nn
@VinayKumar-cm2nn 2 жыл бұрын
@@HYRTutorialsTelugu Done buddy, understood now,going ahead with assignments.Thank you.
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
@@VinayKumar-cm2nn Good
@priyankak9318
@priyankak9318 Жыл бұрын
Tq so much sir 🙏🏻 For ur explanation
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@Katuri981
@Katuri981 Ай бұрын
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 Ай бұрын
Not that sir, insert at end, insert at any position like
@Katuri981
@Katuri981 Ай бұрын
Deletion, search, sort also sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Ай бұрын
@@Katuri981 array lo you dont have any methods for those buddy. you can create some helper functions to do that
@HYRTutorialsTelugu
@HYRTutorialsTelugu Ай бұрын
@@Katuri981 avanni cheppalanmte DSA start cheyyali buddy
@nageswararaovicharapu2595
@nageswararaovicharapu2595 2 жыл бұрын
Your explanation is very very very........good bro
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 🙂
@shaikzakeer8146
@shaikzakeer8146 2 жыл бұрын
got confidence after watching all the videos
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
That's good 👍
@rishibhaskerrbng9845
@rishibhaskerrbng9845 Жыл бұрын
assingment done bro but first one only some thougn remaining all easy
@HYRTutorialsTelugu
@HYRTutorialsTelugu Ай бұрын
super
@P.Anji579
@P.Anji579 Жыл бұрын
Thanks for sharing information anna
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@nprince411
@nprince411 4 ай бұрын
your videos nice sir🥰🙏
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 ай бұрын
Thanks buddy 🤩
@pallavolisowjanya4438
@pallavolisowjanya4438 2 жыл бұрын
Tq sir Waiting for next video
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Coming soon buddy
@veenamahi9888
@veenamahi9888 2 жыл бұрын
nice explanations sir thank u so much
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 😊
@THALA--7
@THALA--7 3 ай бұрын
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 Ай бұрын
ohh noo thats not how we should do it buddy
@gunasekhard9353
@gunasekhard9353 2 жыл бұрын
Nice dude when i seen video Fell good dude
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks dude
@yaswanthtirupathi6551
@yaswanthtirupathi6551 2 жыл бұрын
Thank you for sharing knowledge bro
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Happy learning buddy
@swathichaganti706
@swathichaganti706 Жыл бұрын
It's a gud session..can you please provide the output of all the programs which you are giving us as assignment..
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Check the description buddy
@SivaKumar-bd8hm
@SivaKumar-bd8hm 2 жыл бұрын
good explanation sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thank you buddy 🙂
@kuchipudilokeswararao26
@kuchipudilokeswararao26 2 жыл бұрын
Awesome explanation bro
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 😊
@suhasiniguthi5997
@suhasiniguthi5997 2 жыл бұрын
Nice vedio and good explanation
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thank you buddy 🙂
@bhanutakkalla5257
@bhanutakkalla5257 2 жыл бұрын
good explanation please upload total core java classes 🙏🙏
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 😊 Sure buddy
@nagarajuyadav5739
@nagarajuyadav5739 2 жыл бұрын
Core java complete cheyandi sir ..and spring boot medha videos cheyandi .
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Springboot meeda no plans buddy
@srihariyalala7201
@srihariyalala7201 Жыл бұрын
nice explaining
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@maheshnagisetty436
@maheshnagisetty436 6 ай бұрын
super explanation sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu 5 ай бұрын
Thanks buddy 🙂
@saideepak1808
@saideepak1808 Жыл бұрын
Thank you sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@lalitanaidu7200
@lalitanaidu7200 Жыл бұрын
Very well explained 👍👍
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ThanujaKandukuri
@ThanujaKandukuri Жыл бұрын
exellent video sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@pulagamdevamatha5158
@pulagamdevamatha5158 Жыл бұрын
Thank you so much.i have seen so many videos but in this video i learned clearly about multi Dimensional Array.
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Super buddy
@villagegirlvihari
@villagegirlvihari 7 ай бұрын
Really usefull😅😅thank you soo much anna inka programms explanation ivvocchukadha
@HYRTutorialsTelugu
@HYRTutorialsTelugu 5 ай бұрын
Happy Learning buddy 🙂
@NaveenNaveen-zr3or
@NaveenNaveen-zr3or 2 жыл бұрын
thank you Brother for the detail explanation of arrays. this was the best
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 🙂
@adityadash7
@adityadash7 Жыл бұрын
Sir do discuss assignment questions in the start of session
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
You can check the solutions video link in the description buddy
@jithendra2248
@jithendra2248 Жыл бұрын
excellent sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ramakrishna2296
@ramakrishna2296 2 жыл бұрын
thank you anna explain of java
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Keep watching and keep supporting buddy
@ksdnsdkumar1375
@ksdnsdkumar1375 2 жыл бұрын
Hello, have u uploaded video on how to capture screenshot on test failure for parallel execution with TESTNG?
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Checkout this video buddy: kzbin.info/www/bejne/iWbae4x5fdeIh5Y
@Kings238
@Kings238 Жыл бұрын
This is for me 😘🤩😍 yaaaaa huuuuuuuuuuuuuuu thank you sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@hemanthkumar1355
@hemanthkumar1355 2 жыл бұрын
Good vedio sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 🙂
@naguboyinachaitanya234
@naguboyinachaitanya234 Жыл бұрын
Matrix Multiplication is a good problem, sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Yes buddy
@pavannukala493
@pavannukala493 2 жыл бұрын
Thank you brother for your effective information to teach us
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Welcome buddy 😊
@privateac5506
@privateac5506 5 ай бұрын
nice video anna
@HYRTutorialsTelugu
@HYRTutorialsTelugu 4 ай бұрын
Thanks buddy 🤩
@A-Leelamohan
@A-Leelamohan Жыл бұрын
Tnq bro❤
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy Learning buddy 🙂
@saiKumar-iy6qt
@saiKumar-iy6qt 6 ай бұрын
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 5 ай бұрын
Yeah solutions video lo correct chesa buddy
@harshaharsha6681
@harshaharsha6681 Жыл бұрын
Just superb🎉🎉🎉🎉🎉
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@RahulRahul-w8n4h
@RahulRahul-w8n4h 5 ай бұрын
Sir sub arrays midha oka video cheyandi
@HYRTutorialsTelugu
@HYRTutorialsTelugu 5 ай бұрын
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
@devarajdev3581
@devarajdev3581 Жыл бұрын
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😊😊
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@krrish208
@krrish208 2 жыл бұрын
Please continue the series
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Sure I will continue buddy
@santankumar6401
@santankumar6401 2 жыл бұрын
Sir please explain Assignment Questions also in the video
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Assignment questions explain chesanu kada buddy
@saikrishna631
@saikrishna631 Жыл бұрын
Thank you
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@sureshtirumalasetti7335
@sureshtirumalasetti7335 2 жыл бұрын
Please continue remaining concepts in Java sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Yeah sure buddy
@Sree-Sree-
@Sree-Sree- Жыл бұрын
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
@harathidindu3827
@harathidindu3827 Жыл бұрын
Useful👍
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@JaruguPushpanjali
@JaruguPushpanjali Жыл бұрын
Thank you sir but ee topics koncham tricky 😊
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Yes buddy
@chebroluhemanth1013
@chebroluhemanth1013 Жыл бұрын
Sir please మీరు assignment ఇస్తున్నారు..వాటిలో కూడా కొన్ని examples చూపించి ఇస్తే బాగుంటుంది..సార్ ఎందుకంటే అస్సలు తెలియని వారం వున్నాం
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Check the description for the solutions video link buddy
@saikumarmekala2686
@saikumarmekala2686 Жыл бұрын
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.
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Check the description for solutions video buddy
@theshadow9706
@theshadow9706 2 жыл бұрын
Thank you bro
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks for liking buddy
@rajbabu7507
@rajbabu7507 Жыл бұрын
why shouldnot place int instead of arr in multidimensional code? can it allow it?
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
arr anedi ikkada variable name buddy. you can't have the variable names as any of the reserved keywords from java.
@chethrinarender5097
@chethrinarender5097 Жыл бұрын
Ma clg la kuda intha manchiga chapale anna😍
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@balachandrareddyyelapala5013
@balachandrareddyyelapala5013 2 жыл бұрын
nice reddy
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thanks buddy 🙂
@anuradhakuppili9457
@anuradhakuppili9457 Жыл бұрын
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
@saisuryais4184
@saisuryais4184 Жыл бұрын
clear ga chebutunnaru kani assignments ki answer exolanation chesthe better
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Description lo link untundi chudu buddy
@sindhujagalam3007
@sindhujagalam3007 Жыл бұрын
array strings concept cheppandi sir,concatinating etc
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Strings meeda seperate video untundi chudu buddy
@sindhujagalam3007
@sindhujagalam3007 Жыл бұрын
@@HYRTutorialsTelugu ok sir thankyou chusanu
@VVVV-n8j
@VVVV-n8j Жыл бұрын
Im not able to print this in matrix style(2x2 or 3x3...) ...any suggestion?
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Checkout the assignments video link in the description buddy
@victorychannel2952
@victorychannel2952 Жыл бұрын
For(int i=0;i
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
@@victorychannel2952 correct buddy but you are using the static values in loop like 2. This should be your array elements count. That way it works for any size of array
@victorychannel2952
@victorychannel2952 Жыл бұрын
For(int i=0;i
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
@@victorychannel2952 correct buddy. Good job
@pavan3852
@pavan3852 2 жыл бұрын
Sir i have a doubt Q= i++ ante adi use chesedi increment avvadanki use chesthamu kada sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Yes buddy. ++ Is a incremental operator
@anuradhakuppili9457
@anuradhakuppili9457 Жыл бұрын
Thank you so much for such a great explanation
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@manjeeralakshmi7472
@manjeeralakshmi7472 Жыл бұрын
sir, naku debug cheyatam ravatledu sir, mouse over chestunte adi view cheyatledu?
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Did you follow this playlist from the start buddy?
@manjeeralakshmi7472
@manjeeralakshmi7472 Жыл бұрын
Yes.. sir..aa debug class kuda 3times vini try chesanu
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Nuvvu ela chesthunnavo em chesthunnavo naku video teesi send chei buddy@@manjeeralakshmi7472
@lakshman2873
@lakshman2873 2 жыл бұрын
Super sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thankyou buddy
@tejareddy199
@tejareddy199 10 ай бұрын
great!
@HYRTutorialsTelugu
@HYRTutorialsTelugu 5 ай бұрын
Thanks buddy 🙂
@mahendradunga9508
@mahendradunga9508 3 ай бұрын
Sir how to comments lines will provide all lines in at a time
@HYRTutorialsTelugu
@HYRTutorialsTelugu 3 ай бұрын
Watch the comments video buddy
@Masthan.Ms.07
@Masthan.Ms.07 Жыл бұрын
sir plz explain assinment answers.konni answers thliyatledu explain cheste vatini ela chesaru anedi prepapare avutham..mistake ekkada chesam rectify chesukuntam plz sir
@HYRTutorialsTelugu
@HYRTutorialsTelugu Жыл бұрын
Description lo solutions video link untundi chudu buddy
@shaikasiya2913
@shaikasiya2913 5 ай бұрын
Where the assignment solution over description. Can anyone out there?
@mallelanagaraj
@mallelanagaraj 10 ай бұрын
Hi Sir ,assignment videos kuda cheyandi sir .interviews lo adugutunnaru.please
@HYRTutorialsTelugu
@HYRTutorialsTelugu 5 ай бұрын
Check the description buddy
@SRIRAM-ym7jq
@SRIRAM-ym7jq 2 жыл бұрын
overeall it is an blasting bupper hit video. " THAGAIDHE LEEE"
@HYRTutorialsTelugu
@HYRTutorialsTelugu 2 жыл бұрын
Thankyou buddy 😊
P28 - Looping statements (foreach) in Java | Core Java | Java Programming |
26:03
H Y R Tutorials - Telugu
Рет қаралды 59 М.
P29 - Strings in Java | Core Java | Java Programming |
1:18:24
H Y R Tutorials - Telugu
Рет қаралды 184 М.
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
#29 Multi Dimensional Array in Java
13:08
Telusko
Рет қаралды 189 М.
P26 - Arrays (Single Dimensional) in Java | Core Java | Java Programming |
54:55
H Y R Tutorials - Telugu
Рет қаралды 209 М.
P40 - Exception handling in Java - 1 | Core Java | Java Programming |
1:00:25
H Y R Tutorials - Telugu
Рет қаралды 173 М.
2D Arrays | Java Complete Placement Course | Lecture 11
19:53
Apna College
Рет қаралды 1,1 МЛН
P30 - Static and Non static in java | Core Java | Java Programming |
59:18
H Y R Tutorials - Telugu
Рет қаралды 113 М.
P25 - Looping statements (for) in Java | Core Java | Java Programming |
19:45
H Y R Tutorials - Telugu
Рет қаралды 99 М.
P37 - Abstract Class in Java | Core Java | Java Programming |
32:55
H Y R Tutorials - Telugu
Рет қаралды 94 М.
P35 - Encapsulation in Java | Core Java | Java Programming |
23:16
H Y R Tutorials - Telugu
Рет қаралды 137 М.