📌 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 Жыл бұрын
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".🤗🤗
@HYRTutorialsTelugu5 ай бұрын
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 Жыл бұрын
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 Жыл бұрын
Great buddy. Keep it up
@gnanendrakumart3140 Жыл бұрын
4th one raledha
@swathipriya47404 ай бұрын
can we do in scanner class???let me know how to do in scanner classes
@letsart74062 ай бұрын
thankyouuuuuu so muchhhhh tbh mee teaching vallane naaku coding interest vachindhi....Forever grateful sir...lots of love
@HYRTutorialsTeluguАй бұрын
Thanks buddy 🙂
@jakeershaik3279 Жыл бұрын
Hurry, This much of detailed Mutli DImensional array explanation is clear bruh
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@jagadishreddy7745 Жыл бұрын
Awesome explanation and very easy to learn regional language lo superb 👏🏻👏🏻
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ganeshv045 Жыл бұрын
In-depth explanation, thank you so much.
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@pradeepkavuluri81862 жыл бұрын
Superb ga explanation ichav Anna
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 😊
@TELUGU-TECH-LEARNER Жыл бұрын
Nyc Explanation Guru Ji Am Purchased Membership Account For You Selenium Classes Thank You So Much Guruji
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ullangisarvothamaraju996 Жыл бұрын
sir very excellent explanation. Very helpful for beginners.
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy
@Trending26982 жыл бұрын
your assignments are so useful for us to go deep in to the concept😊😊😊😊😊
@HYRTutorialsTelugu2 жыл бұрын
That's the intent of assignments buddy. Good to know that they are helping you
@reddysree95369 ай бұрын
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
@HYRTutorialsTelugu5 ай бұрын
Happy Learning buddy 🙂
@pradeepkumarmalluri Жыл бұрын
thankyou sir for providing amazing course🙇♂🙇♂🙇♂
@HYRTutorialsTelugu Жыл бұрын
Happy Learning buddy 🙂
@Apple-cl5sj Жыл бұрын
Thank you so much for your time and valuable content
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@kitchensetting54722 жыл бұрын
i understood very easily, thanks once again for clear explanation.
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 😊
@pvenkannababu81284 ай бұрын
Thank you so much sir. Clear Explaination about the arrays❤❤
@HYRTutorialsTeluguАй бұрын
Keep learning and keep supporting buddy 🙂
@rameshgandham6705 Жыл бұрын
Tq anna chala baga explain chasavu
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@chinnikrishna6800 Жыл бұрын
Chala baga explain chesaru, Thanks a lot sir
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 🙂
@vinaykumarkinnera59812 жыл бұрын
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
@HYRTutorialsTelugu2 жыл бұрын
Thankyou buddy
@nikhillokesh73922 жыл бұрын
@@HYRTutorialsTelugu please sir, do continue the remaining videos?
@HYRTutorialsTelugu2 жыл бұрын
Sure buddy
@knowhow19442 жыл бұрын
thank you sir for the detail explanation of arrays. this was the best I never heard
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy
@sudeepthireddy102 Жыл бұрын
Thank you so much sir and one request from my side...if possible please share answers of assignments sir.
@HYRTutorialsTelugu Жыл бұрын
Description lo link undi chudu buddy
@shaheenashaheen41126 ай бұрын
Excellent and great sessions 👏👏
@HYRTutorialsTelugu5 ай бұрын
Thanks buddy 🙂
@manasareddy7529 Жыл бұрын
Thnku soo much sir I never find such clear explanation before ✨
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@dammalapaduroyalyadavs9777 Жыл бұрын
😊
@KATAKAMANJANIAKANKSHA7 ай бұрын
Assignments give a good understanding and deep knowledge of coding and logic. Video is handy
@HYRTutorialsTelugu5 ай бұрын
Thanks buddy 🙂
@polunirosha5530 Жыл бұрын
Thank you annaya... very good explanation....
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy
@sureshgongali7680 Жыл бұрын
Super explaining sir Python css. Vedios sir
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@naveenkumar66712 жыл бұрын
Bro your teaching is very v Wanderful please continue bro 🙏🙏🙏🙏
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 😊
@tharunyarnam1380 Жыл бұрын
Next level explanation sir
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 🙂
@NagababuYadlapalli Жыл бұрын
excellent way of teaching .............
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ChandraSekhar-wq5fz Жыл бұрын
Thank you so much for your support..
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@ECpacharivinay Жыл бұрын
user input tisukoni example chepthe inka baga ardamavuthundi bro
@HYRTutorialsTelugu Жыл бұрын
Assignment ichanu buddy anduke
@rajyalakshmimudadla46433 ай бұрын
Super Explanation bro
@HYRTutorialsTelugu3 ай бұрын
Thanks buddy 😊
@avulayamuna7162 жыл бұрын
Hi sir..firstly thank you so much....chala clear ga cheptunnaru.. can u also gave assignment answers ?
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 😊 Check the description buddy
@VinayKumar-cm2nn2 жыл бұрын
Idi konvcham tricky vundi ardham cheskodaniki,will watch again
@HYRTutorialsTelugu2 жыл бұрын
Yes buddy
@VinayKumar-cm2nn2 жыл бұрын
@@HYRTutorialsTelugu Done buddy, understood now,going ahead with assignments.Thank you.
@HYRTutorialsTelugu2 жыл бұрын
@@VinayKumar-cm2nn Good
@priyankak9318 Жыл бұрын
Tq so much sir 🙏🏻 For ur explanation
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@Katuri981Ай бұрын
Hi sir, operations on array element's midha kuda video thisthe bagundedhi sir
@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Ай бұрын
Not that sir, insert at end, insert at any position like
@Katuri981Ай бұрын
Deletion, search, sort also sir
@HYRTutorialsTeluguАй бұрын
@@Katuri981 array lo you dont have any methods for those buddy. you can create some helper functions to do that
Your explanation is very very very........good bro
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 🙂
@shaikzakeer81462 жыл бұрын
got confidence after watching all the videos
@HYRTutorialsTelugu2 жыл бұрын
That's good 👍
@rishibhaskerrbng9845 Жыл бұрын
assingment done bro but first one only some thougn remaining all easy
@HYRTutorialsTeluguАй бұрын
super
@P.Anji579 Жыл бұрын
Thanks for sharing information anna
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@nprince4114 ай бұрын
your videos nice sir🥰🙏
@HYRTutorialsTelugu2 ай бұрын
Thanks buddy 🤩
@pallavolisowjanya44382 жыл бұрын
Tq sir Waiting for next video
@HYRTutorialsTelugu2 жыл бұрын
Coming soon buddy
@veenamahi98882 жыл бұрын
nice explanations sir thank u so much
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 😊
@THALA--73 ай бұрын
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Ай бұрын
ohh noo thats not how we should do it buddy
@gunasekhard93532 жыл бұрын
Nice dude when i seen video Fell good dude
@HYRTutorialsTelugu2 жыл бұрын
Thanks dude
@yaswanthtirupathi65512 жыл бұрын
Thank you for sharing knowledge bro
@HYRTutorialsTelugu2 жыл бұрын
Happy learning buddy
@swathichaganti706 Жыл бұрын
It's a gud session..can you please provide the output of all the programs which you are giving us as assignment..
@HYRTutorialsTelugu Жыл бұрын
Check the description buddy
@SivaKumar-bd8hm2 жыл бұрын
good explanation sir
@HYRTutorialsTelugu2 жыл бұрын
Thank you buddy 🙂
@kuchipudilokeswararao262 жыл бұрын
Awesome explanation bro
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 😊
@suhasiniguthi59972 жыл бұрын
Nice vedio and good explanation
@HYRTutorialsTelugu2 жыл бұрын
Thank you buddy 🙂
@bhanutakkalla52572 жыл бұрын
good explanation please upload total core java classes 🙏🙏
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 😊 Sure buddy
@nagarajuyadav57392 жыл бұрын
Core java complete cheyandi sir ..and spring boot medha videos cheyandi .
@HYRTutorialsTelugu2 жыл бұрын
Springboot meeda no plans buddy
@srihariyalala7201 Жыл бұрын
nice explaining
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@maheshnagisetty4366 ай бұрын
super explanation sir
@HYRTutorialsTelugu5 ай бұрын
Thanks buddy 🙂
@saideepak1808 Жыл бұрын
Thank you sir
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@lalitanaidu7200 Жыл бұрын
Very well explained 👍👍
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ThanujaKandukuri Жыл бұрын
exellent video sir
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@pulagamdevamatha5158 Жыл бұрын
Thank you so much.i have seen so many videos but in this video i learned clearly about multi Dimensional Array.
@HYRTutorialsTelugu Жыл бұрын
Super buddy
@villagegirlvihari7 ай бұрын
Really usefull😅😅thank you soo much anna inka programms explanation ivvocchukadha
@HYRTutorialsTelugu5 ай бұрын
Happy Learning buddy 🙂
@NaveenNaveen-zr3or2 жыл бұрын
thank you Brother for the detail explanation of arrays. this was the best
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 🙂
@adityadash7 Жыл бұрын
Sir do discuss assignment questions in the start of session
@HYRTutorialsTelugu Жыл бұрын
You can check the solutions video link in the description buddy
@jithendra2248 Жыл бұрын
excellent sir
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@ramakrishna22962 жыл бұрын
thank you anna explain of java
@HYRTutorialsTelugu2 жыл бұрын
Keep watching and keep supporting buddy
@ksdnsdkumar13752 жыл бұрын
Hello, have u uploaded video on how to capture screenshot on test failure for parallel execution with TESTNG?
@HYRTutorialsTelugu2 жыл бұрын
Checkout this video buddy: kzbin.info/www/bejne/iWbae4x5fdeIh5Y
@Kings238 Жыл бұрын
This is for me 😘🤩😍 yaaaaa huuuuuuuuuuuuuuu thank you sir
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@hemanthkumar13552 жыл бұрын
Good vedio sir
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 🙂
@naguboyinachaitanya234 Жыл бұрын
Matrix Multiplication is a good problem, sir
@HYRTutorialsTelugu Жыл бұрын
Yes buddy
@pavannukala4932 жыл бұрын
Thank you brother for your effective information to teach us
@HYRTutorialsTelugu2 жыл бұрын
Welcome buddy 😊
@privateac55065 ай бұрын
nice video anna
@HYRTutorialsTelugu4 ай бұрын
Thanks buddy 🤩
@A-Leelamohan Жыл бұрын
Tnq bro❤
@HYRTutorialsTelugu Жыл бұрын
Happy Learning buddy 🙂
@saiKumar-iy6qt6 ай бұрын
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..
@HYRTutorialsTelugu5 ай бұрын
Yeah solutions video lo correct chesa buddy
@harshaharsha6681 Жыл бұрын
Just superb🎉🎉🎉🎉🎉
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@RahulRahul-w8n4h5 ай бұрын
Sir sub arrays midha oka video cheyandi
@HYRTutorialsTelugu5 ай бұрын
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 Жыл бұрын
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 Жыл бұрын
Thanks buddy 😊
@krrish2082 жыл бұрын
Please continue the series
@HYRTutorialsTelugu2 жыл бұрын
Sure I will continue buddy
@santankumar64012 жыл бұрын
Sir please explain Assignment Questions also in the video
@HYRTutorialsTelugu2 жыл бұрын
Assignment questions explain chesanu kada buddy
@saikrishna631 Жыл бұрын
Thank you
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@sureshtirumalasetti73352 жыл бұрын
Please continue remaining concepts in Java sir
@HYRTutorialsTelugu2 жыл бұрын
Yeah sure buddy
@Sree-Sree- Жыл бұрын
Array programming logics cheppandi sir. like only even index num print or odd num index print etc..
@HYRTutorialsTelugu Жыл бұрын
Check the description for the solutions video link buddy
@harathidindu3827 Жыл бұрын
Useful👍
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@JaruguPushpanjali Жыл бұрын
Thank you sir but ee topics koncham tricky 😊
@HYRTutorialsTelugu Жыл бұрын
Yes buddy
@chebroluhemanth1013 Жыл бұрын
Sir please మీరు assignment ఇస్తున్నారు..వాటిలో కూడా కొన్ని examples చూపించి ఇస్తే బాగుంటుంది..సార్ ఎందుకంటే అస్సలు తెలియని వారం వున్నాం
@HYRTutorialsTelugu Жыл бұрын
Check the description for the solutions video link buddy
@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 Жыл бұрын
Check the description for solutions video buddy
@theshadow97062 жыл бұрын
Thank you bro
@HYRTutorialsTelugu2 жыл бұрын
Thanks for liking buddy
@rajbabu7507 Жыл бұрын
why shouldnot place int instead of arr in multidimensional code? can it allow it?
@HYRTutorialsTelugu Жыл бұрын
arr anedi ikkada variable name buddy. you can't have the variable names as any of the reserved keywords from java.
@chethrinarender5097 Жыл бұрын
Ma clg la kuda intha manchiga chapale anna😍
@HYRTutorialsTelugu Жыл бұрын
Thanks buddy 😊
@balachandrareddyyelapala50132 жыл бұрын
nice reddy
@HYRTutorialsTelugu2 жыл бұрын
Thanks buddy 🙂
@anuradhakuppili9457 Жыл бұрын
Hello sir , nenu debug chesetappudu printStream ane code vastundhi sir meri chesinattu ravatlesu em cheyali sir cheppandhi please
@HYRTutorialsTelugu Жыл бұрын
Can u send me the screenshots or video on hyadagirireddytutorials@gmail.com
@saisuryais4184 Жыл бұрын
clear ga chebutunnaru kani assignments ki answer exolanation chesthe better
Im not able to print this in matrix style(2x2 or 3x3...) ...any suggestion?
@HYRTutorialsTelugu Жыл бұрын
Checkout the assignments video link in the description buddy
@victorychannel2952 Жыл бұрын
For(int i=0;i
@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 Жыл бұрын
For(int i=0;i
@HYRTutorialsTelugu Жыл бұрын
@@victorychannel2952 correct buddy. Good job
@pavan38522 жыл бұрын
Sir i have a doubt Q= i++ ante adi use chesedi increment avvadanki use chesthamu kada sir
@HYRTutorialsTelugu2 жыл бұрын
Yes buddy. ++ Is a incremental operator
@anuradhakuppili9457 Жыл бұрын
Thank you so much for such a great explanation
@HYRTutorialsTelugu Жыл бұрын
Happy learning buddy 😊
@manjeeralakshmi7472 Жыл бұрын
sir, naku debug cheyatam ravatledu sir, mouse over chestunte adi view cheyatledu?
@HYRTutorialsTelugu Жыл бұрын
Did you follow this playlist from the start buddy?
@manjeeralakshmi7472 Жыл бұрын
Yes.. sir..aa debug class kuda 3times vini try chesanu
@HYRTutorialsTelugu Жыл бұрын
Nuvvu ela chesthunnavo em chesthunnavo naku video teesi send chei buddy@@manjeeralakshmi7472
@lakshman28732 жыл бұрын
Super sir
@HYRTutorialsTelugu2 жыл бұрын
Thankyou buddy
@tejareddy19910 ай бұрын
great!
@HYRTutorialsTelugu5 ай бұрын
Thanks buddy 🙂
@mahendradunga95083 ай бұрын
Sir how to comments lines will provide all lines in at a time
@HYRTutorialsTelugu3 ай бұрын
Watch the comments video buddy
@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 Жыл бұрын
Description lo solutions video link untundi chudu buddy
@shaikasiya29135 ай бұрын
Where the assignment solution over description. Can anyone out there?
@mallelanagaraj10 ай бұрын
Hi Sir ,assignment videos kuda cheyandi sir .interviews lo adugutunnaru.please
@HYRTutorialsTelugu5 ай бұрын
Check the description buddy
@SRIRAM-ym7jq2 жыл бұрын
overeall it is an blasting bupper hit video. " THAGAIDHE LEEE"