H Y R Tutorials - Telugu
H Y R Tutorials - Telugu
  • Видео 113
  • Просмотров 6 883 142
P69 - Wrapper classes in Java | Core Java | Java Programming |
In the world of Java programming, we unwrap the significance of Wrapper Classes. These classes serve as bridges, transforming primitive data types into objects, and open up a world of possibilities for manipulating and utilizing data.
Discover how Wrapper Classes like Integer, Double, and Boolean bring an object-oriented layer to primitive types, enabling compatibility with Java Collections and providing useful utility methods. Dive into scenarios where these classes shine, from simplifying data structures to enhancing functionality in generic programming.
By the end of this video, you'll have a solid understanding on Wrapper Classes in Java and be ready to embrace this powerful feature in ...
Просмотров: 18 315

Видео

P68 - Type conversion in Java | Core Java | Java Programming |
Просмотров 9 тыс.6 месяцев назад
In the world of Java programming, understanding how to convert data from one type to another is crucial. In this video, we learn the basics of type conversion. Explore the mechanisms for converting primitive data types, such as int to double or char to int, and grasp the nuances of widening and narrowing conversions. Dive into the world of casting and discover how to navigate potential pitfalls...
P67 - this keyword in Java | Core Java | Java Programming |
Просмотров 11 тыс.7 месяцев назад
In the world of Java programming, the "this" keyword plays an important role in differentiating instance variables from local variables and avoiding ambiguity. In this video, we unravel the significance and applications of "this" keyword. "this" keyword acts as a reference to the current object, enabling smooth interaction with instance variables within constructors, methods, and even in the co...
Core Java - Assignment #9 | Core Java | Java Programming |
Просмотров 8 тыс.9 месяцев назад
In this video, I have explained about "Core Java - Assignment #9". Programs explained in this video: ❇️ Write a java program to print the sum & average of the elements present in a list ❇️ Write a java program to print the sum of the even numbers in a list ❇️ Write a java program to split a list into two lists ❇️ Write a java program to merge two lists into a single list ❇️ Write a java program...
P66 - StringBuffer and StringBuilder in Java | Core Java | Java Programming |
Просмотров 24 тыс.9 месяцев назад
In the world of Java, efficient string manipulation is essential, and that's where StringBuffer and StringBuilder come into play. In this video, we unravel the power and differences between String, StringBuffer and StringBuilder. Learn how StringBuffer and StringBuilder allow you to modify strings dynamically, making them perfect for scenarios where string content needs to be altered frequently...
P65 - Multithreading in Java - P3 | Core Java | Java Programming |
Просмотров 16 тыс.10 месяцев назад
Multithreading is like having multiple threads of execution running concurrently in a single Java program. In this video, we unravel the concept of multithreading, explaining what tasks, processes, and threads are. Discover how multithreading allows your program to perform multiple tasks simultaneously, enhancing efficiency and responsiveness. From understanding the difference between multitask...
P64 - Multithreading in Java - P2 | Core Java | Java Programming |
Просмотров 32 тыс.10 месяцев назад
Dive into the dynamic world of multithreading with this comprehensive Java tutorial. In this video, we not only discuss the creation of threads using both the Thread class and the Runnable interface, but we also explore the entire lifecycle of a thread. Learn how to spawn threads using the Thread class or achieve a more flexible approach by implementing the Runnable interface. Discover how thre...
P63 - Multithreading in Java - P1 | Core Java | Java Programming |
Просмотров 41 тыс.10 месяцев назад
Multithreading is like having multiple threads of execution running concurrently in a single Java program. In this video, we unravel the concept of multithreading, explaining what tasks, processes, and threads are. Discover how multithreading allows your program to perform multiple tasks simultaneously, enhancing efficiency and responsiveness. From understanding the difference between multitask...
P62 - Lambda expressions in java | Core Java | Java Programming |
Просмотров 31 тыс.11 месяцев назад
Lambda expressions in Java revolutionize the way we write concise and functional code. In this video, we explore the concept of lambda expressions and explore their power and versatility in modern Java programming. We discuss various use cases of lambda expressions, such as functional interfaces, stream operations, and event handling. We discuss the syntax and features of lambda expressions, in...
P61 - Interfaces in Java - Part 2 | Core Java | Java Programming |
Просмотров 13 тыс.11 месяцев назад
Functional interfaces play a crucial role in Java's functional programming paradigm. In this video, we explore the concept of functional interfaces and their significance in writing concise and expressive code. We discuss what functional interfaces are and how they enable the use of lambda expressions and method references. We showcase popular functional interfaces from the Java standard librar...
P60 - Inner classes in Java - Part 2 | Core Java | Java Programming |
Просмотров 10 тыс.11 месяцев назад
Inner classes in Java provide a powerful mechanism for organizing and encapsulating code within other classes. In this video, we explore the concept of inner classes and their various types, including local classes, and anonymous classes. We discuss how inner classes can improve code organization, enhance encapsulation, and enable better modularity. We also delve into the syntax and usage of ea...
P59 - Inner classes in Java - Part 1 | Core Java | Java Programming |
Просмотров 17 тыс.Год назад
Inner classes in Java provide a powerful mechanism for organizing and encapsulating code within other classes. In this video, we explore the concept of inner classes and their various types, including static inner classes, non-static inner classes (also known as nested classes), local classes, and anonymous classes. We discuss how inner classes can improve code organization, enhance encapsulati...
P58 - Garbage Collection in java | Core Java | Java Programming |
Просмотров 16 тыс.Год назад
In this video, we dive into the concept of garbage collection and explore how Java automatically manages memory by reclaiming unused objects. Garbage collection is a fundamental aspect of memory management in Java. I have explained the different garbage collection algorithms, such as mark-and-sweep, and generational collection. I also discussed the role of the Java Virtual Machine (JVM) in memo...
Collections Framework in Java | DSA | Core Java | Java Programming |
Просмотров 80 тыс.Год назад
In this video, we dive deep into the Java Collections Framework, an essential part of Java development. Whether you're a beginner or an experienced Java developer, this video is designed to help you master the concepts, usage, and best practices of working with collections in Java. Throughout the video, we cover a wide range of topics related to the Java Collections Framework. We start with the...
P57 - Anonymous objects in Java | Core Java | Java Programming |
Просмотров 10 тыс.Год назад
In this video, we explore the concept of anonymous objects in Java and uncover their benefits and best practices. Anonymous objects in Java provide a convenient way to create and use objects without explicitly assigning them to a variable. In this way, they allow for concise and on-the-fly instantiation of objects. By the end of this video, you'll have a clear understanding of how to leverage a...
P56 - Memory Management in Java | Core Java | Java Programming |
Просмотров 20 тыс.Год назад
P56 - Memory Management in Java | Core Java | Java Programming |
P55 - JDK, JRE and JVM in Java | Core Java | Java Programming |
Просмотров 38 тыс.Год назад
P55 - JDK, JRE and JVM in Java | Core Java | Java Programming |
P54 - Iterator, ListIterator & Enumeration in Java | Collections | Core Java | Java Programming |
Просмотров 21 тыс.Год назад
P54 - Iterator, ListIterator & Enumeration in Java | Collections | Core Java | Java Programming |
P53 - Handle properties files in Java | Collections | Core Java | Java Programming |
Просмотров 15 тыс.Год назад
P53 - Handle properties files in Java | Collections | Core Java | Java Programming |
P52 - Set in Java | Collections | Core Java | Java Programming |
Просмотров 30 тыс.Год назад
P52 - Set in Java | Collections | Core Java | Java Programming |
P51 - Queue in Java | Collections | Core Java | Java Programming |
Просмотров 29 тыс.Год назад
P51 - Queue in Java | Collections | Core Java | Java Programming |
Core Java - Assignment #8 | Core Java | Java Programming |
Просмотров 4,7 тыс.Год назад
Core Java - Assignment #8 | Core Java | Java Programming |
P50 - Map in Java | Collections | Core Java | Java Programming |
Просмотров 61 тыс.Год назад
P50 - Map in Java | Collections | Core Java | Java Programming |
P26 - Selenium Manager in Selenium WebDriver | Selenium | Java |
Просмотров 8 тыс.Год назад
P26 - Selenium Manager in Selenium WebDriver | Selenium | Java |
P49 - Assignment on List Interface in Java | Collections | Core Java | Java Programming |
Просмотров 20 тыс.Год назад
P49 - Assignment on List Interface in Java | Collections | Core Java | Java Programming |
P48 - LinkedList in Java | Collections | Core Java | Java Programming |
Просмотров 54 тыс.Год назад
P48 - LinkedList in Java | Collections | Core Java | Java Programming |
P47 - Stack in Java | Collections | Core Java | Java Programming |
Просмотров 41 тыс.Год назад
P47 - Stack in Java | Collections | Core Java | Java Programming |
P46 - ArrayList & Vector in Java | Collections | Core Java | Java Programming |
Просмотров 107 тыс.Год назад
P46 - ArrayList & Vector in Java | Collections | Core Java | Java Programming |
P45 - Collections Overview in Java | Collections | Core Java | Java Programming |
Просмотров 117 тыс.Год назад
P45 - Collections Overview in Java | Collections | Core Java | Java Programming |
P44 - POJO Class & Java Bean Class in Java | Core Java | Java Programming |
Просмотров 29 тыс.Год назад
P44 - POJO Class & Java Bean Class in Java | Core Java | Java Programming |

Комментарии

  • @srikanthappanaboina1042
    @srikanthappanaboina1042 20 часов назад

    Hii Ee okka video download chesthe Migilina 9 Questions Download cheyyalsina pani ledhu kadha

  • @rakeshdomala7183
    @rakeshdomala7183 21 час назад

    The greatest Explainer 💯

  • @GPSK-ue5hn
    @GPSK-ue5hn 22 часа назад

    Sorry Anna 😭

  • @karthikreddyveera4433
    @karthikreddyveera4433 22 часа назад

    Annaya JDBC,JSP, SPRING FRAME WORK, SPRING BOOT, MICRO SERVICES , Udemy lo chesi pettu annaya Free amm vadhu annaya antho kontha rate Fix cheyyi annaya , Teacher ante Ela vundali , nuvve nidarshan annaya , please udemy lo upload cheyyi annaya please ❤❤❤

  • @anjineyulu9790
    @anjineyulu9790 23 часа назад

    Ma kosam puttina devudu sir miru 🙏

  • @ajaygoud5162
    @ajaygoud5162 День назад

    Great explanation 👏

  • @armyonce8239
    @armyonce8239 День назад

    It was crystal clear explanation ,sir. thanks a lot sir

  • @1aa853
    @1aa853 День назад

    Tnx sir...💖✨

  • @anushaponnapalli5597
    @anushaponnapalli5597 День назад

    Hi annaya nenu meee videos chustuna chala nerchukontuna prati video like kuda chestuna and subscribed too and please do videos on cucumber framework automation testing also, meru chepindi nerchukovadam valla chala mandi students lifes ye kadu employees and valaki job oste vala total family kuda happy because of your sharing knowledge mee videos apaakandi we support u andariki nachutadi but like cheyaru kani chesevalkosam ayina meru stop cheyakandi please🤌🤌🤌💥💥💥💥mimlani devudu yepudu manchiga chudali anukontuuu me subscriber

  • @privateac5506
    @privateac5506 День назад

    amazing Teaching anna. thanks for your efforts ❤❤❤❤❤❤❤❤❤❤

  • @kotyadasuneel567
    @kotyadasuneel567 День назад

    Tnx ❤ sir it's working 😊

  • @udayg7116
    @udayg7116 День назад

    Sir ... Inka Java classes unnaya... Leda ippativaraku chesina classes saripothaya....pls cheppandi??

  • @user-zv7xi7es7u
    @user-zv7xi7es7u День назад

    Anna prime numbers program easy ga cheppara

  • @ajaygoud5162
    @ajaygoud5162 День назад

    Great👏 explanation

  • @Praneesh203
    @Praneesh203 2 дня назад

    Finally I have completed this playlist Thanks buddy ❤ 🛐🛐🛐🛐🛐 🫂🫂🫂🫂🫂🫂🖤🖤🖤

  • @BandollaKomala
    @BandollaKomala 2 дня назад

    😍😍😍😍

  • @BandollaKomala
    @BandollaKomala 2 дня назад

    nice sir

  • @imtiazbasha3324
    @imtiazbasha3324 2 дня назад

    Wonderful explanation. Effort is appreciated. Keep it up!!

  • @Praneesh203
    @Praneesh203 2 дня назад

    Hi Buddy ❤

  • @Praneesh203
    @Praneesh203 2 дня назад

    Content 💀 Explanation 💀 way of teaching 💀 Thanks buddy 😅 🫂🛐🖤

  • @Praneesh203
    @Praneesh203 2 дня назад

    🛐🖤

  • @user-om8of7mb7b
    @user-om8of7mb7b 2 дня назад

    THANK YOU SIR

  • @attitude-zd2kb
    @attitude-zd2kb 2 дня назад

    Sir coaching center lo kuda mee playlust lo ve explain chestara additional ga vallu homeqork ki problems kuda estaru kada maku kuda problems oka short vedio lo pettandi sir pls

  • @EthicsYouTubechannel
    @EthicsYouTubechannel 2 дня назад

    Excellent 👌👍

  • @1aa853
    @1aa853 2 дня назад

    🤗

  • @-Dsanthosh
    @-Dsanthosh 2 дня назад

    hi bro....today maa comapny task static and non - static programs medha task echaru bro...but so many doubts unnai static and non static medha ...but eee video chushaka full picha clarity vachindhi bro..thank you so much bro....junior developers ki and freshers ki chala use full this video ...once again thank you so much this explanation...

  • @attitude-zd2kb
    @attitude-zd2kb 2 дня назад

    Best teacher forever

  • @ssmovieshorts7050
    @ssmovieshorts7050 2 дня назад

    Core Java and Java same a bro

  • @vikasmachepalli6323
    @vikasmachepalli6323 2 дня назад

    Hlo sir, scanner cannot be resolved to a type ani error vasthundhi. Ela sort out cheyali sir

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu 2 дня назад

      Did you import the references for it buddy? Press Ctrl+space to get that option

  • @anilkumars6837
    @anilkumars6837 2 дня назад

    good teaching

  • @imsravan_pasupuleti
    @imsravan_pasupuleti 2 дня назад

    Sir e video thoo core java course complete ayyinda inkaa vunnai ha video

  • @dampetlasanthosh3426
    @dampetlasanthosh3426 2 дня назад

    Hi bro... Eppudu nenu java junior developer ga work chesthunnanu.. Eppudu maaku training lo eee topic ravadam jarigidhi... Eee video chusaka small doubts anni clarify.. Thank you so much bro...maa chala mandhiki useful this video... Once again thank you so much bro...

  • @HanviKali
    @HanviKali 2 дня назад

    Very good explanation sir.....

  • @nagoorianeesha4200
    @nagoorianeesha4200 2 дня назад

    Excellent sir

  • @Hema.104
    @Hema.104 2 дня назад

    Sir maaku merge cheyadam and reverse,min,max ki code ravadam ledu sir class artham ayindi baaga kani aa level lo thinking avadam ledu konchem explain cheyandi sir

  • @Vstv6
    @Vstv6 2 дня назад

    It is very easy to learn. Bro nice explain we learn about more knowledge from better than the coaching classes and clg. Clasess

  • @user-bw7lm4ft3m
    @user-bw7lm4ft3m 2 дня назад

    1. public static void print1to100Value() { int i = 1; while (i < 101) { System.out.println(i); i++; } } 2. public static void printEvenNumbersBetween200To500() { int numbers = 200; while (numbers <= 500) { System.out.println(numbers); numbers += 2; } } 3. public static void printTheNumbersWhichAreDivisibleBy7ForTheRange150To200() { int number = 150; while (number <= 200) { if (number % 7 == 0) { System.out.println(number); } number++; } } 4.public static boolean checkingPrimeNumber(int number) { if (number <= 1) { return false; } for (int i = 2; i <= Math.sqrt(number); i++) { if (number % i == 0) { return false; } } return true; } public static void printThePrimeNumbersBetween50To150() { int number = 50; while (number <= 150) { if (checkingPrimeNumber(number)) { System.out.println(number); } number++; } } 5.public static void printTheSumOfEvenNumbersBetween40To80() { int firstNumber = 40; int lastNumber = 80; int totalSumNumber = 0; int number = firstNumber; while (number <= lastNumber) { if (number % 2 == 0) { totalSumNumber += number; } number++; } System.out.println("Sum Of Even Numbers Between 40 To 80 is: " + totalSumNumber); } 6.public static void printTheOddNumbersBetween200To25InReverseOrder() { int number = 200; while (number >= 25) { if (number % 2 != 0) { System.out.println(number); } number--; } }

  • @Praneesh203
    @Praneesh203 2 дня назад

    🛐🖤

  • @FRAGTELUGUPLAYER2614
    @FRAGTELUGUPLAYER2614 3 дня назад

    🙏🙏🙏 youtube java king hyr there is no doubt

  • @user-om8of7mb7b
    @user-om8of7mb7b 3 дня назад

    thank you sir your teaching is very nice❤

  • @1aa853
    @1aa853 3 дня назад

    Oko video oko diamond 💎💥

  • @madhulatha65
    @madhulatha65 3 дня назад

    Super explination

  • @attitude-zd2kb
    @attitude-zd2kb 3 дня назад

    Sir e 70 vedios chuste ayipotunda java baga ravadaniki pls rpy sir

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu 2 дня назад

      Yes buddy. Inka konni unnai chesedi but these are enough

  • @damodharb8403
    @damodharb8403 3 дня назад

    Good.

  • @surakantidivyanjali6504
    @surakantidivyanjali6504 3 дня назад

    sir, i tried average problem with double but it is not giving correct number after decimals why sir?

    • @HYRTutorialsTelugu
      @HYRTutorialsTelugu 2 дня назад

      Send me the program on hyadagirireddytutorials@gmail.com

  • @Telugu_facts405
    @Telugu_facts405 3 дня назад

    Baga explain chesaru bro even ma ofc trainer kuda enthala cheppaledhu

  • @BandollaKomala
    @BandollaKomala 3 дня назад

    thank you sir

  • @swapnamundlapati297
    @swapnamundlapati297 3 дня назад

    i am satisfiied sir with ur teaching.

  • @AnuHima_official-j2x
    @AnuHima_official-j2x 3 дня назад

    good