No video

P49 - Assignment on List Interface in Java | Collections | Core Java | Java Programming |

In this video, I have explained about "Assignment on List Interface in Java".
🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶
▶ Next Video link: • P50 - Map in Java | Co...
◀ Previous Video Link: • P48 - LinkedList in Ja...
↔ 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

Пікірлер: 246

  • @HYRTutorialsTelugu
    @HYRTutorialsTelugu Жыл бұрын

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

  • @ChanduChokkam
    @ChanduChokkamАй бұрын

    AT LAST I AM LEARNING JAVA IN MY MOTHER TONGUE, WHICH IS GIVING GOOD CLARIFICATION TOO💕💕 THANK YOU VERY MUCH SIR

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    14 күн бұрын

    Thanks buddy 🤩

  • @angelanitha2706
    @angelanitha2706 Жыл бұрын

    /*Write a program print the sum of the even numbers in a list Input:{4,5,0,9,8,10} Output:22*/ package ListInterfaceassignments; import java.util.LinkedList; public class Program2 { public static void main(String[] args) { LinkedListll=new LinkedList(); ll.add(4); ll.add(5); ll.add(0); ll.add(9); ll.add(8); ll.add(10); System.out.println("Input:"+ll); int sum=0; for(int i=0;i

  • @RaviKumar-zz1zj

    @RaviKumar-zz1zj

    4 ай бұрын

    anitha i am also wrote program and posted comment list please see once is it correct or not (way of writing program) .but output is came .

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @sravankumar7005
    @sravankumar7005 Жыл бұрын

    Anna Thank You for crystal clear explanation of Java

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Happy Learning buddy 🙂

  • @udaysagunala9143
    @udaysagunala9143 Жыл бұрын

    I love the way you teach. Please make a videos of DSA too.

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @shankar7435
    @shankar74354 ай бұрын

    P4: list split : list -> list1 & list2 list merge: list1 + list2 => list3 ===================================== import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class P01SumAndAverage { public static void main(String[] args) { //List list = Arrays.asList(new Integer[] {4, 5, 0, 9, 8, 10}); List list = Arrays.asList(4, 5, 0, 9, 8, 10); List list1 = new ArrayList(); List list2 = new ArrayList(); for(int i = 0; i if(i

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @udaybhaskar4940
    @udaybhaskar4940 Жыл бұрын

    Please make video on this topic I just want to know how to approach. your way of approaching baguntundi so use ful avutundi chala rojulu nunchi wait chestunna please make as soon as possible

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Yeah chusta buddy

  • @Mad..Murali5268
    @Mad..Murali5268 Жыл бұрын

    Hi..bro Collections ki notes prepare chesi istanu ani chepparu.... So...plz provide Collections notes as soon as possible...I'm waiting eagerly

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Sure buddy

  • @shankar7435

    @shankar7435

    4 ай бұрын

    Just don't wait. Watch those videos again.

  • @srilaxmijetti3036
    @srilaxmijetti3036 Жыл бұрын

    Thank you bro wait for next videos for collection set and map

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Today at 10am buddy

  • @vishnuvardhanvankayalapati7703
    @vishnuvardhanvankayalapati77037 ай бұрын

    Hi sir, Hope you're doing well, I got into a confusion in 11 question "Program to delete the elements of list1 from list2?" Sir, do you want us to remove everysingle occurrence of the single element of list1 from list2? or do you want us remove single occurrence of the list1 elements from the list2?

  • @dontamsettisatish7644
    @dontamsettisatish7644 Жыл бұрын

    The best teacher ever❤

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @saikalyan7515
    @saikalyan75153 ай бұрын

    1) package patternsprog; import java.util.ArrayList; import java.util.List; public class oneprog { public static void main(String[] args) { int a[] = { 4, 5, 0, 9, 8, 10 }; int sum = 0; int avg = 0; for (int i = 0; i sum = sum + a[i]; } avg = sum / a.length; System.out.println("sum is" + sum); System.out.println(avg); } } 2) package patternsprog; import java.util.ArrayList; import java.util.List; public class oneprog { public static void main(String[] args) { int a[] = { 4, 5, 0, 9, 8, 10 }; int sum = 0; ArrayList al = new ArrayList(); for (int i = 0; i if (a[i] % 2 == 0) { al.add(a[i]); sum = sum + a[i]; } } System.out.println(sum); } } 3) package patternsprog; import java.util.ArrayList; import java.util.List; public class oneprog { public static void main(String[] args) { int a[] = { 4, 9, 8, 5, 0, 10 }; int size = a.length / 2; ArrayList l1 = new ArrayList(); ArrayList l2 = new ArrayList(); for (int i = 0; i l1.add(a[i]); } for (int i = size; i l2.add(a[i]); } System.out.println(l1); System.out.println(l2); } } 4) package patternsprog; import java.util.ArrayList; import java.util.List; public class oneprog { public static void main(String[] args) { int a[] = { 4, 9, 8 }; int b[] = { 5, 0, 10 }; ArrayList al = new ArrayList(); for (int i = 0; i al.add(a[i]); } for (int i = 0; i al.add(b[i]); } System.out.println(al); } } 5) package patternsprog; import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class oneprog { public static void main(String[] args) { String s[]= {"baby","ball","soap","baby","shampoo","chalk","soap","makeup","baby","lotion"}; ArrayList al=new ArrayList(); for(int i=0;i

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @saibujji4322
    @saibujji43225 ай бұрын

    sir why don't you upload these question answers?

  • @vijay-ji7om
    @vijay-ji7om Жыл бұрын

    Waiting for next video anna. In java✨❤

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    May be next year he buddy inka

  • @vijay-ji7om

    @vijay-ji7om

    Жыл бұрын

    ​@@HYRTutorialsTelugu 👍❤

  • @shaikmisba6860
    @shaikmisba68606 ай бұрын

    Thank you sir you are a good teacher please make a videos of advanced java also sir it will help full us.

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Thanks buddy 🙂

  • @VasanthChoudary-uc5cz
    @VasanthChoudary-uc5cz11 ай бұрын

    Sir 11th question lo elements ni ae manner lo delete chesaru sir. Ante ipudu input 1 lo 4 undi so input 2 lo all occurences of 4 ni delete chesaru kaani input 1 lo 8 undi so input 2 lo 8 only 1 time ae delete chesaru???

  • @angelanitha2706
    @angelanitha2706 Жыл бұрын

    /*Write a program to print the sum&average of the elements present in list Input:{4,5,0,9,8,10} output;sum-36&average-6*/ package ListInterfaceassignments; import java.util.LinkedList; public class Program1 { public static void main(String[] args) { LinkedList ll=new LinkedList(); ll.add(4); ll.add(5); ll.add(0); ll.add(9); ll.add(8); ll.add(10); System.out.println("Input:"+ll); int sum=0; for(int i=0;i

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @sridharchalla6131
    @sridharchalla6131 Жыл бұрын

    because i am preparing for my company drive and i learned all the videous in two days

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Only videos chusthe use undadu buddy. You should practice all the assignments given

  • @SureshK-ed2yi
    @SureshK-ed2yi Жыл бұрын

    memu try chestamu sir but meru kuda vaka video chestey better sir because meru chesedi different way lo chestaru sir i hope merku ardam ayindi anukunta

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Chuddam buddy

  • @chandhunaidu1654
    @chandhunaidu1654 Жыл бұрын

    Please guys like and comment

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    🙏

  • @arunkumarreddychepyala3834
    @arunkumarreddychepyala3834 Жыл бұрын

    nice explanation

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @RaviKumar-zz1zj
    @RaviKumar-zz1zj5 ай бұрын

    ok sir homwork chestanu and thankyou sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Happy Learning buddy 🙂

  • @varalakshminijamala2891
    @varalakshminijamala2891Ай бұрын

    Thankyou sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Happy Learning buddy 🙂

  • @20-513Priyanka
    @20-513Priyanka5 ай бұрын

    Sir make videos on advance java too

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    No plan buddy

  • @manikantamutyala2152
    @manikantamutyala2152 Жыл бұрын

    Thank you sir, sir chala gap icharu core java meeda inka vedios chestaara lekapothe ayipoyaaya edaina update ivvandi sir.

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Inka unnai buddy but bcz of busy schedule epudu chestano nake clarity ledu

  • @manikantamutyala2152

    @manikantamutyala2152

    Жыл бұрын

    @@HYRTutorialsTelugu Ok sir wait chestam

  • @st54523
    @st54523 Жыл бұрын

    bro Why cant you do a series in advanced java great series bro thank you for sharing the knowledge please do a series on advanced java bro

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    It takes a lot of time buddy and I don't have that much time.

  • @hime2206
    @hime2206 Жыл бұрын

    Very nice videos sir. When is the next video sir eagerly waiting.

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @Chinnii999
    @Chinnii999 Жыл бұрын

    Super explanation bro

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @sslnarayana9875
    @sslnarayana9875 Жыл бұрын

    Superb sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @user-go1yx2br4p
    @user-go1yx2br4p5 ай бұрын

    package ListAssignments; import java.util.*; public class Practies{ public static void main(String[] args) { ArrayList numbers = new ArrayList(); numbers.add(4); numbers.add(5); numbers.add(0); numbers.add(9); numbers.add(8); numbers.add(10); int sum = 0; for (int num : numbers) { sum += num; } double average = (double) sum / numbers.size(); System.out.println("Sum: " + sum); System.out.println("Average: " + average); } }

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @balachandrareddyyelapala5013
    @balachandrareddyyelapala5013 Жыл бұрын

    SUPER REDDY

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @ladduakshu5685
    @ladduakshu5685 Жыл бұрын

    If anyone have done all the problems please provide solutions for it so that the people who didn't get some solutions may refer to ur solutions ..

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Yes guys, help each other

  • @ganeshkatherapaka1719

    @ganeshkatherapaka1719

    Жыл бұрын

    are u got solutions

  • @naninani-qb1iq
    @naninani-qb1iq11 күн бұрын

    6th problem code public class HighestNoOfDuplicates { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); Integer[] arr = new Integer[n]; for(int i=0; is) { s=count; variable =i; } } System.out.println(variable+" is maximum of "+s+ " times"); } }

  • @sairamnaik6404
    @sairamnaik64043 ай бұрын

    Solutions with my level best. These questions are awesome. I have experienced similar type of questions in interview. If I could have found these questions earlier I could have done well. Any how I learned not to repeat mistakes and learning more. //Sum and Avg public static void main(String[] args) { LinkedList list = new LinkedList(); list.add(4); list.add(5); list.add(0); list.add(9); list.add(8); list.add(10); int sum = 0; for (int i = 0; i sum = sum + list.get(i); } int Avg = sum/list.size(); System.out.println(sum); System.out.println(list); System.out.println(sum+" "+Avg); } //Sum of even public static void main(String[] args) { LinkedList list = new LinkedList(); list.add(4); list.add(5); list.add(0); list.add(9); list.add(8); list.add(10); int sum = 0; for (int i = 0; i if (list.get(i) % 2 == 0){ sum = sum + list.get(i); } } System.out.println(sum); } //Split Array {4,9,8,5,0,10} public static void main(String[] args) { LinkedList list = new LinkedList(); list.add(4); list.add(9); list.add(8); list.add(5); list.add(0); list.add(10); LinkedList list1 = new LinkedList(); LinkedList list2 = new LinkedList(); int m = list.size()/2; for (int i = 0; i list1.add(list.get(i)); } for (int i = m; i list2.add(list.get(i)); } System.out.println(list1); System.out.println(list2); } //Merge {4,9,8} {5,0,10} public static void main(String[] args) { LinkedList list1 = new LinkedList(); LinkedList list2 = new LinkedList(); LinkedList flist = list1; list1.add(4); list1.add(9); list1.add(8); list2.add(5); list2.add(0); list2.add(10); for (int i = 0; i list1.add(list2.get(i)); } System.out.println(flist); } //Highest Duplicate element public static void main(String[] args) { int maxcount = 0; int maxelement = 0; for (int i = 0; i Integer num = numbers.get(i); int count = 0; for (int j = 0; j Integer n = numbers.get(j); if(n.equals(num)){ count++; } } if (count>maxcount){ maxcount = count; maxelement = num; } } System.out.println("Max element"+ " " + maxelement ); System.out.println("Max count" +" "+ maxcount); } WAP TO DELETE THE DUPLICATE ELEMENTS public static void main(String[] args) { ArrayList numbers = new ArrayList(); numbers.add(4); numbers.add(1); numbers.add(9); numbers.add(4); numbers.add(8); numbers.add(0); numbers.add(5); numbers.add(1); numbers.add(8); numbers.add(6); int Size = numbers.size(); for (int i = 0; i Integer Initial = numbers.get(i); for (int j = i+1; j Integer Check = numbers.get(j); if (Initial.equals(Check)){ numbers.removeAll(Collections.singleton(Initial)); Size = numbers.size(); j--; i--; } } } System.out.println(numbers); } //Print Duplicate list LinkedList list1 = new LinkedList(); list1.add(4); list1.add(9); list1.add(8); list1.add(5); LinkedList list2 = new LinkedList(); list2.add(1); list2.add(8); list2.add(0); list2.add(5); list2.add(1); list2.add(6); LinkedList clist = new LinkedList(); for (int i = 0; i for (int j = 0; j if(list1.get(i) == list2.get(j)){ clist.add(list1.get(i)); } } } System.out.println(clist); //List of prime number LinkedList prime = new LinkedList(); int n = 50; for (int i = 2; i

  • @saipradeep01

    @saipradeep01

    2 ай бұрын

    Bro share remaining problems as well

  • @sairamnaik6404

    @sairamnaik6404

    2 ай бұрын

    @@saipradeep01 ok sure

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @testbookallexams7876
    @testbookallexams7876 Жыл бұрын

    Anna Mee classes follow ayithey chala ledante course emaina buy cheyala

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Classes follow ithe Chalu buddy. Appatiki nee meeda neeku confidence raakapothe then go for courses

  • @vishalb6427

    @vishalb6427

    5 ай бұрын

    Nainu courses complete chesi ee sir videos chustunna ....ikkade chala baga artham avutundi ...ee classes ni complete ga vinte chalu bro ....courses lo intha clear ga chepparu ...it's my suggestion ...😊😊

  • @sayamkiransaisriram2167
    @sayamkiransaisriram2167 Жыл бұрын

    Tq sir tq very much

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Happy learning buddy 😊

  • @peddaboyenasuniljayachandr3010
    @peddaboyenasuniljayachandr3010 Жыл бұрын

    Sir videos fast ga cheyandi waiting your videos daily

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    I'm trying my best buddy

  • @RangaRajuth
    @RangaRajuth Жыл бұрын

    Waiting for next vedio buddy

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Today at 10am buddy

  • @rpnaidu9724
    @rpnaidu9724 Жыл бұрын

    very good sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @electricaltechnology1359
    @electricaltechnology1359 Жыл бұрын

    Sir.. math functions gurinchi oka video chayandi

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Already starting lo oka assignment ichanu buddy danai meeda

  • @chaithanyakummari8891
    @chaithanyakummari88913 ай бұрын

    Hii sir please make a video on applets topic

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    No plan buddy

  • @duddedasrikanth2219
    @duddedasrikanth2219 Жыл бұрын

    institute vellakunda mi vedios matrame follow avuthunna sir remaining vedios kosam waiting sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Super buddy Institute avasaram em ledu buddy

  • @chandhunaidu1654
    @chandhunaidu1654 Жыл бұрын

    Super sir thanks

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @Nani-gi3ef
    @Nani-gi3ef Жыл бұрын

    bro once give much more clarity on this program because iam very curious on this type programs

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Soon will make a video buddy

  • @onepieceUniverse871

    @onepieceUniverse871

    Жыл бұрын

    advance java kuda cheppandi bro @@HYRTutorialsTelugu

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    11 ай бұрын

    No time buddy@@onepieceUniverse871

  • @velithotiprasanth8251
    @velithotiprasanth82517 ай бұрын

    sir 12 th output wrong, index starts reading from 0 on words.

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    letme check

  • @kharikrishna470
    @kharikrishna470 Жыл бұрын

    bro 19 and 20 questions clear gaa explain cheyandi .naku entha try chesina logic ela rayalo teliyadam ledu, idea raldu please please bro

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Try to watch the video one more time. That assignment part alone

  • @gaddamprudhvi9737
    @gaddamprudhvi9737 Жыл бұрын

    sir set and queue videos upload cheyyandi....pls

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Coming soon buddy

  • @SivaKumar-db5sl
    @SivaKumar-db5sl Жыл бұрын

    Q1: package ass.list; import java.util.ArrayList; import java.util.Scanner; public class SumAnndAverage { public static void main(String[] args) { ArrayList al=new ArrayList(5); Scanner sc=new Scanner(System.in); System.out.println("enter numbers ot add"); int size = 0; if(al.size()==0) { size=al.size()+1; } for(int i=0;i

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @bhaskargenji1460
    @bhaskargenji1460 Жыл бұрын

    Em annaa chala rojuluu. Nunchi. Classes. Cheppaledaaaa

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Busy schedule buddy

  • @user-tq1dm1kx7y
    @user-tq1dm1kx7y11 ай бұрын

    HAPPY TEACHERS DAY SIR

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    11 ай бұрын

    Thanks buddy 🙂

  • @user-jw4vb7uq2y
    @user-jw4vb7uq2y9 ай бұрын

    Nice

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    9 ай бұрын

    Thanks buddy 😊

  • @rajavikrampullem7583
    @rajavikrampullem7583 Жыл бұрын

    Remaining videos upload chayandi sir..

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Today at 10am buddy

  • @rajavikrampullem7583

    @rajavikrampullem7583

    Жыл бұрын

    @@HYRTutorialsTelugu thank you sir..

  • @rpnaidu9724
    @rpnaidu9724 Жыл бұрын

    Assignment on List interface Programes video upload cheyandi bro

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Adi meere solve cheyyali buddy

  • @chitattisaikumarnaidu7023
    @chitattisaikumarnaidu7023 Жыл бұрын

    Tqq u Anna❤️🥰❤️

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Happy learning buddy 😊

  • @shyamanthagantla2790
    @shyamanthagantla279010 ай бұрын

    topic understood sir.

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    9 ай бұрын

    Thanks buddy 🙂

  • @vamsikrishnagaddam1563
    @vamsikrishnagaddam1563 Жыл бұрын

    Bro third assignment okkasari explain chesthara

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Ee assignment solutions video tvaralone chesta buddy

  • @saitarunallu
    @saitarunallu6 ай бұрын

    package collectionsPractice; import java.util.List; public class ListCalculator { public static int addList(List i) { int sum=0; for (int c : i) { sum+=c; } return sum; } public static int listAverage(List i) { int sum=0; for (Integer integer : i) { sum += integer; } int average=sum/i.size(); return average; } public static int listSumOfEvenNum(List i) { int sum=0; for (Integer integer : i) { if(integer%2==0) { sum+=integer; } } return sum; } public static List listMerge(List i,List j) { i.addAll(j); return i; } public static List listMerge(List i,List j, List q) { q.addAll(i); q.addAll(j); return q; } }

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @prasadgutala2448
    @prasadgutala2448 Жыл бұрын

    assenment video cheyandi sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Sure buddy

  • @CreativeThoughts.

    @CreativeThoughts.

    10 ай бұрын

    @@HYRTutorialsTelugu Please 🥺🙏

  • @NikhilKumar-yc5rt
    @NikhilKumar-yc5rt Жыл бұрын

    Nice bro

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 🙂

  • @uppadamurali79
    @uppadamurali79 Жыл бұрын

    Sir JDBC gurichi video cheyyuchu kada

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Chuddam buddy

  • @rajavikrampullem7583
    @rajavikrampullem7583 Жыл бұрын

    please remaining videos upload chayandi sir.... We are eagerly waiting to look forward...

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Sure buddy

  • @testbookallexams7876
    @testbookallexams7876 Жыл бұрын

    Tqs anna

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Happy learning buddy 😊

  • @sravankumar3309
    @sravankumar3309 Жыл бұрын

    sir lifecycle of thread gurinchi chepandi sir...

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Sure buddy

  • @purushothamranjith9118
    @purushothamranjith9118 Жыл бұрын

    Remaining videos cheyandi sir pls

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Sure buddy

  • @kpprashanth6851
    @kpprashanth6851 Жыл бұрын

    Nice explain bróø👌

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Thanks buddy 😊

  • @user-bx6ru7jr7l
    @user-bx6ru7jr7l5 ай бұрын

    TO FIND THE DUPLICATE ELEMENTS AND BIG AMONG THEM: public static void main(String[] args) { ArrayList ar = new ArrayList(); ar.add("america"); ar.add("britan"); ar.add("canada"); ar.add("dubai"); ar.add("britan"); ar.add("america"); ar.add("britan"); String big = " "; ArrayList ij = new ArrayList(); for(int w=0;w

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @sindhujagalam3007
    @sindhujagalam3007 Жыл бұрын

    2.package main; import java.util.*; public class practice { public static void main(String[] args) { List l1=new LinkedList(); l1.add(4); l1.add(5); l1.add(0); l1.add(9); l1.add(8); l1.add(10); int sum=0; for(int i=0;i

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @yaswanthbhanu8565
    @yaswanthbhanu8565 Жыл бұрын

    Bro 3rd and 4th question ki arrays use cheyala Leda collection use cheyala?

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Collections he use cheyyali buddy

  • @yaswanthbhanu8565
    @yaswanthbhanu8565 Жыл бұрын

    Brother meru spring boot and spring batch gurinchi kuda cheptara ?

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    No plan buddy 😔

  • @yaswanthbhanu8565
    @yaswanthbhanu8565 Жыл бұрын

    Bro ee assignment questions meda cheyandi bro next class konni solve cheyalekpoya pls☹️

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Ha chusta buddy

  • @MyLove-zc1xu

    @MyLove-zc1xu

    Жыл бұрын

    Bro I done all problems if you want ping me

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    @@MyLove-zc1xu Good buddy

  • @MyLove-zc1xu

    @MyLove-zc1xu

    Жыл бұрын

    @@HYRTutorialsTelugu brother nenu chesina problems meku mail cheyana.. mistakes vunte cheppandi bro

  • @udaybhaskar4940

    @udaybhaskar4940

    Жыл бұрын

    @@MyLove-zc1xu hai bro send me

  • @user-cd4oy5qu7m
    @user-cd4oy5qu7m Жыл бұрын

    waiting for set list videos

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Yeah buddy chestanu

  • @akhil.4082
    @akhil.408210 ай бұрын

    tqqq bro

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    9 ай бұрын

    keep learning buddy

  • @TopG-hu2gf
    @TopG-hu2gf10 ай бұрын

    Sir i had solved all the questions and i uploaded all my answers in my github. But iam unable to post the link in the comments section.

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    9 ай бұрын

    Why buddy? you can also send me on hyadagirireddytutorials@gmail.com

  • @ajaychalla800

    @ajaychalla800

    8 ай бұрын

    Bro send me answers pdf bro

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    7 ай бұрын

    @@ajaychalla800 pdf emi prepare cheyyaledu buddy

  • @hemasundar5005
    @hemasundar5005 Жыл бұрын

    anna Adv.java videos chayyava plz

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    No plan buddy 😔

  • @syamsundar4302
    @syamsundar4302 Жыл бұрын

    Thanks sir 🥰, And how many videos are left for Java sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Happy Learning buddy 🙂

  • @jagginisulochana9866
    @jagginisulochana98669 ай бұрын

    import java.util.*; public class MyClass { public static void main(String args[]) { int sum=0; ArrayList l1=new ArrayList(); l1.add(4); l1.add(5); l1.add(0); l1.add(9); l1.add(8); l1.add(10); int count =0; for(int i=0;i

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    8 ай бұрын

    Correct buddy

  • @Mohankumar-px6lt
    @Mohankumar-px6lt Жыл бұрын

    can you please tell when next video will be released ?

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Not able to sit in front of the system bcz of work buddy

  • @Mohankumar-px6lt

    @Mohankumar-px6lt

    Жыл бұрын

    @@HYRTutorialsTelugu sir please do videos asap we're eagerly waiting for your lectures. Your way of explanation is soooo clear and easy to understand. Even paid teachers are not even 30 to 40% of your level.

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    @@Mohankumar-px6lt thank you so much buddy

  • @nareshkonukati5647
    @nareshkonukati5647 Жыл бұрын

    waiting for next video bro

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Today at 10am buddy

  • @sridharchalla6131
    @sridharchalla6131 Жыл бұрын

    sir when you are going to upload the next vedio, plz reply

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Today at 10am buddy

  • @d.vbalakrishna2429
    @d.vbalakrishna2429 Жыл бұрын

    sir meeru okkasari project medha video cheiyandi

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Just corejava tho I can't explain the realtime projects buddy

  • @yaswanthbhanu8565
    @yaswanthbhanu8565 Жыл бұрын

    16,17 map use cheyala brother?

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    No buddy

  • @eedulavenkatesh-rm1gx
    @eedulavenkatesh-rm1gx Жыл бұрын

    Please share all this questions in pdf format sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Pause the video and take a screenshot buddy

  • @sridharchalla6131
    @sridharchalla6131 Жыл бұрын

    i want the remaing

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Map video release avthundi buddy ivala

  • @velithotiprasanth8251
    @velithotiprasanth82517 ай бұрын

    public static void main(String[] args) { //to find the highest duplicate value. Vectorinput =new Vector(); input.add(4); input.add(1); input.add(9); input.add(4); input.add(8); input.add(0); input.add(5); input.add(1); input.add(8); input.add(6); MapfrequencyMap = new HashMap(); for (Integer number:input) { frequencyMap.put(number, frequencyMap.getOrDefault(number,0)+1); } int maxfrequence=Collections.max(frequencyMap.values()); int maxDuplicate=0; for(Map.Entry entry:frequencyMap.entrySet()) { if(entry.getValue()==maxfrequence) { maxDuplicate=entry.getKey(); } } System.out.println("The Highest Value is "+maxDuplicate); } }

  • @praveenpasupula9582
    @praveenpasupula9582 Жыл бұрын

    MultiThreading cheppandi sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Sure buddy

  • @sindhujagalam3007
    @sindhujagalam3007 Жыл бұрын

    10package main; import java.util.*; public class biggestduplicate { public static void main(String[] args) { List l1=new LinkedList(); l1.add(4); l1.add(9); l1.add(8); l1.add(5); l1.add(0); l1.add(10); System.out.println(Arrays.toString(l1.toArray())); } }

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @velithotiprasanth8251
    @velithotiprasanth82517 ай бұрын

    sir mi explanation varu miru echa assignment varu sir its very tough

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Thats how you learn buddy

  • @user-ud2cl1bv2l
    @user-ud2cl1bv2l9 ай бұрын

    😍😍😍

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    8 ай бұрын

    Thanks buddy 🙂

  • @malleshwaribavandla6246
    @malleshwaribavandla6246 Жыл бұрын

    Bro 19 question ardam kale koncham clarity istara

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Adi initial ga confusing ga untadi but try to watch that part few times buddy. Or search for balanced expression problem in Google and you will get so many results. Don't look at the answers but try to understand the problem and solve it on your own buddy

  • @trinadhp7352
    @trinadhp7352 Жыл бұрын

    Hi bro

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Hi buddy

  • @RK-oh5uf
    @RK-oh5uf Жыл бұрын

    Conditional statements, loop statements practice questions evvagalara sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Aa videos lo already ichanu buddy

  • @ladduakshu5685
    @ladduakshu5685 Жыл бұрын

    Sir please provide answers for these so that we'll refer it

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Sure buddy

  • @shaikdawood4638
    @shaikdawood4638 Жыл бұрын

    Sir when will be the next video sir

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Today at 10am buddy

  • @ganeshkatherapaka1719
    @ganeshkatherapaka1719 Жыл бұрын

    i unable to code 18 th and 19 th questions .. plz anyone help me

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Soon will upload the solutions video buddy

  • @ganeshkatherapaka1719

    @ganeshkatherapaka1719

    Жыл бұрын

    @@HYRTutorialsTelugu tq bro.. but avi ela cheyali ani alochisthu avi solve chesedhaaka normal gha undanu bro avey think chesthu unta.. plz give some some suggestions to how to do that..

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    @@ganeshkatherapaka1719 nuvvu em em chesav and ekkada struck ayyavo chepthe I will unblock you buddy. Video lo problem enti anedi explain chesanu. So one more time adi vini, code start chei buddy. Start chesaka ninnu em aaputhondi anedi chepthe nenu chepthanu buddy

  • @ganeshkatherapaka1719

    @ganeshkatherapaka1719

    Жыл бұрын

    @@HYRTutorialsTelugu in 18 th question after adding the list employees with name salary and country . after that how will i get the names by country bro.. what conditions i have to write

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    @@ganeshkatherapaka1719 You have iterate and identify the countries then store them into a collection. Then iterate that collection and verify which list has that country and print the names

  • @Sai-lu4np
    @Sai-lu4np Жыл бұрын

    sir please share 19th assignment code it's some what difficult

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Yeah buddy tvaralo solutions video chestanu

  • @Sai-lu4np

    @Sai-lu4np

    Жыл бұрын

    @@HYRTutorialsTelugu thank so much sir ❤️

  • @DungrothuSrinivas
    @DungrothuSrinivas8 ай бұрын

    send me single and dubule liked list progam plse sir...

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    8 ай бұрын

    havent created anything specifically on those things buddy

  • @konintisurekha4587
    @konintisurekha45878 ай бұрын

    Anna assignment video pettandi anna

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Check the description buddy

  • @sricharankolavapalli2948
    @sricharankolavapalli2948 Жыл бұрын

    Git Hub gurinchi oka video chey buddy

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Жыл бұрын

    Sure buddy

  • @sindhujagalam3007
    @sindhujagalam3007 Жыл бұрын

    8.package main; import java.util.*; public class biggestduplicate { public static void main(String[] args) { List l1=new LinkedList(); l1.add(4); l1.add(9); l1.add(8); l1.add(5); List l2=new LinkedList(); l2.add(1); l2.add(8); l2.add(0); l2.add(5); l2.add(1); l2.add(6); List l3=new LinkedList(); for(int i=0;i

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    Ай бұрын

    Good buddy

  • @sindhujagalam3007
    @sindhujagalam300711 ай бұрын

    3 assignment answers link pettandi

  • @HYRTutorialsTelugu

    @HYRTutorialsTelugu

    11 ай бұрын

    Inka cheyyaledu buddy video

Келесі