Java 8 Predicate, Function, Chaining, Predicate Joining interview questions (Live Demo) Code Decode

Поделиться
HTML-код
  • Опубликовано: 4 окт 2024
  • In this video of code decode we have covered Java 8 || Predicate || Function || Chaining || Predicate Joining interview questions (Live Demo)
    Udemy Course of Code Decode on Microservice k8s AWS CICD link:
    openinapp.co/u...
    Course Description Video :
    yt.openinapp.c...
    here are lots of new features which were added in Java 8. Here is the list of important features which are mostly asked as java 8 interview questions:
    Lambda Expression
    Stream API
    Default methods in the interface
    Predicate
    Functional Interface
    Optional
    Method references
    Date API
    Nashorn, JavaScript Engine
    Main advantages of using Java 8?
    More compact code
    Less boiler plate code
    More readable and reusable code
    More testable code
    Parallel operations
    Q) What are predicates?
    Predicate is a predefined Functional Interface (Having only 1 abstract method).
    The only abstract method of predicate is test(T t):
    public boolean test(T t);
    Whenever we want to check some boolean condition then you can go for Predicates.
    Q) How to use Predicates?
    Say if you need to test if the length of the given string is greater than or equal to 5. Then in such situations where you need to test conditions, use test() method of predicate.
    Q) Type parameter and return types of Predicates?
    Input to predicate can be anything like
    Hence only 1 type argument is required which is input type in predicate.
    Return type is not required as its always Boolean only.
    Q) Advantages of Predicates?
    Code Reusability
    If you have same conditions being used 100 times in a prgram then you can write once and just use 100 times with checkLength.test(different string to be tested).
    Conditional checks are holded by Functional interfaces.
    Q) What is Predicate joining?
    You can combine predicates in serial predicate
    Three ways to join :
    And
    Or
    Negate
    Eg if you want to test 2 conditions:
    To check length of string
    To check if length is even.
    Q) What are Functions
    Function is also a predefined Functional Interface (Having only 1 abstract method).
    The only abstract method of Function is apply(T t);
    R apply(T t);
    Given some input perform some operation on input and then produce / return result (not necessary a boolean value).
    This takes 1 input and returns one output.
    In predicate we used to take 1 input and return type is always boolean.
    In function return type is not fixed hence we declare both input type and return type.
    Q) What is Functional chaining
    We can combine / chain multiple functions together with andThen .
    There are two ways to combine functions:
    f1.andThen(f2).apply(Input); - first f1 then f2
    f1.compose(f2).apply(Input) - first f2 then f1
    Multiple functions can be chained together like :
    f1.andThen(f2).andThen(f3).andThen(f4).apply(Inputs);
    -------------------------------------------------------------------------------------------------------------------------------------
    Code Decode Playlists
    Most Asked Core Java Interview Questions and Answers : • Core Java frequently a...
    Advance Java Interview Questions and Answers : • Advance Java Interview...
    Java 8 Interview Questions and Answers : • Java 8 Interview Quest...
    Hibernate Interview Questions and Answers : • Hibernate Interview Qu...
    Spring Boot Interview Questions and Answers : • Advance Java Interview...
    Angular Playlist : • Angular Course Introdu...
    GIT : • GIT
    -------------------------------------------------------------------------------------------------------------------------------------
    Subscriber and Follow Code Decode
    Subscriber Code Decode : www.youtube.co...
    Linkedin : / codedecodeyoutube
    Instagram : / codedecode25
    --------------------------------------------------------------------------------------------------------------------------------------
    #java8InterviewQuestions #java8newfeatures #java8

Комментарии • 274

  • @gyanprakash302
    @gyanprakash302 2 года назад +12

    I have saved each of your playlist, I keep on playing them all day. Thankyou for such amazing contribution, can't wait to support this channel monetarily .

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks Gyan. Means a lot to us. Great to have you with us. 🙂🙂👍👍

  • @prajjvalrajvanshi3298
    @prajjvalrajvanshi3298 3 года назад +35

    Guys this is my first comment in RUclips and I must say this channel is awesome. I am working in a IT company and these videos are real gold. Thank you so much and please bring more of this content 😊👌

    • @CodeDecode
      @CodeDecode  3 года назад

      Thanks Prajjval. We are glad to have you as code decode family. Thanks for the motivation 👍👍🙏🙏

  • @shubhisharma3790
    @shubhisharma3790 3 года назад +5

    Earlier when i tried to learn predicate and functions it looks very complicated to me, but after watching your tutorial it looks to be simple thing. Your way of explaining it awesome.

    • @CodeDecode
      @CodeDecode  3 года назад

      Thanks Shubhi. We are glad u understood the core concept 🙂🙂. Keep learning keep Growing Shubhi 👍👍

  • @kbhoyi
    @kbhoyi 3 года назад +14

    Like your excitement and passion that you explain. You teach the concepts with simple, easy to understand examples. God bless you Mam !

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Thanks Kusuma. Thanks for writing back to us. Much Appreciated.

  • @Priya1_123
    @Priya1_123 2 года назад +4

    I am going through all your java 8 videos since today morning . Your explanation is really clear with code so that even the difficult topic seems easy. Great job . Thanks 🙏

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks a tonn Priya. Keep learning keep Shining Girl ⭐✨⭐✨

  • @sumeetsapla
    @sumeetsapla 2 года назад +3

    This channel provides a better Explanation than courses available on PluralSight. Thanks for video

    • @CodeDecode
      @CodeDecode  2 года назад +1

      Hehe . Thanks for such a unique and awesome compliment Sumeet. Means a lot to us 🙂🙂👏👏

  • @jain_sahil
    @jain_sahil Год назад +2

    Best channel till date...last time you helped me in my selection around 2 years back..
    and now i am here again for the prep of next journey...

    • @CodeDecode
      @CodeDecode  Год назад +1

      You will rock Sahil . Keep learning keep shining Man 🎉🎉 all the very best 👍👍👍👍

  • @OmSriUdayaKumarGade
    @OmSriUdayaKumarGade 3 года назад +3

    Thanks for sharing the Java 8 features and the way explained concepts are really understandable.

  • @venkatarakesh1694
    @venkatarakesh1694 2 года назад +6

    Hi code decode it's so nice to see all videos at one place with clear explanation while preparing for interview, can you please share the PPT which you are explaining in this series.

  • @poojarenake5913
    @poojarenake5913 Год назад +3

    Hi @Code Decode, thank you so much for the effort for these content.. It would have been great if could share these slides with us.

  • @sureshgarine
    @sureshgarine 3 года назад +3

    Thank you so much for your patience and for explaining each and every minute detail very clearly.

    • @CodeDecode
      @CodeDecode  3 года назад

      Thanks for motivation Suresh🙏.

  • @soumyadas9939
    @soumyadas9939 6 месяцев назад +1

    Thank you for such clear explanation of these java 8 features along with easy to understand examples.

  • @johnpeter6237
    @johnpeter6237 3 года назад +2

    Very interested to see the video. Please upload more video for our technical knowledge meanwhile I will inform my all friend to suggest who need technical knowledge

  • @rajatram5068
    @rajatram5068 3 года назад +2

    Very good explanation best channel to preparing for interview . Thank you

  • @sivakirankakileti
    @sivakirankakileti 3 года назад +2

    What a crystal clear explanation!! Thanks a lot for sharing knowledge 👏

  • @karthikeyanu2115
    @karthikeyanu2115 3 года назад +2

    Helps to understand easily and expecting a video on other functional interfaces soon
    Thanks

  • @mekalayellaiah9793
    @mekalayellaiah9793 3 года назад +3

    Appreciate your Great efforts in providing very useful topics. looking forward to seeing other topics as well like collections, threads,spring and rest

    • @CodeDecode
      @CodeDecode  3 года назад

      Thanks for the kind words.
      Please check out collection and spring video on our channel. It is already there.

  • @SriHariChukka1210
    @SriHariChukka1210 2 года назад +1

    much appreciated for the explanation madam, you deserve my subscription of this channel

  • @mnaresh12
    @mnaresh12 3 года назад +1

    please do video on consumer chaining ..........
    .u r helping a lot.... madam g ...
    u r great for that much of patience
    and
    hats off to u for knowledge

    • @CodeDecode
      @CodeDecode  3 года назад

      ruclips.net/p/PLyHJZXNdCXsdeusn4OM33415DCMQ6sUKy

  • @manognajoshik8465
    @manognajoshik8465 2 года назад +2

    Hi mam, i have suggested your series to many of my friends, awesome work 🙏

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks for supporting us Manogna 🙂👍

  • @duraisinghjebastin9740
    @duraisinghjebastin9740 2 года назад +1

    Very useful video to understand about predicate and function 👍

  • @priyankasundar3497
    @priyankasundar3497 Год назад +1

    Really thanks a lot, for saving our time. If i have doubt with your concepts , i googled it. So then my conflicts of idea goes off. I see the realiability of content you are making. ❤

    • @CodeDecode
      @CodeDecode  Год назад

      Thanks a lot Priyanka ❤️❤️ means a lot to us

  • @_randomstuff
    @_randomstuff 2 года назад +1

    I generally ignore 'like subscribe and comment' thing but I can't help liking the content and the way you explain/express, thankyou very much. 'COOOL' 😍 this the thought I get at the end of your videos.
    Happy to support you in petron,if you have an account.

  • @shruthipadmaprabha5138
    @shruthipadmaprabha5138 3 года назад +1

    Hi Mam,
    All videos are so clear and very well explained... thank you ! But my only suggestion is please keep your phone in silent mode not vibration mode.. vibrations in the middle of video really annoying.

    • @CodeDecode
      @CodeDecode  3 года назад

      Yes Shruthi. We understand. Actually we just shoot, may be in multiple takes. Single shot video is not practically possible bcz after 15 minutes of continues speaking, we need gulp of water or sometimes sneeze or something disrupts the video. So many a times we miss to silent the phone and shoot back. That's why sometimes this happens. Sorry for the disturbance. Thanks for letting us know and bringing this issue to our notice 🙏

  • @jyothibhima9705
    @jyothibhima9705 3 года назад +2

    Thanks for the nice Explanation!!! Please upload Streams concept as early as possible.

    • @CodeDecode
      @CodeDecode  3 года назад

      It's already upload. 😊

    • @CodeDecode
      @CodeDecode  3 года назад

      It's in same playlist. Please let me know you don't find it.

  • @kishoredanti5769
    @kishoredanti5769 3 года назад +4

    All your videos are really helpful to understand and remember the Java concepts & to prepare for the interviews. Please do Part 4 of this & a video on Spring Boot Microservices concepts🙏

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Thanks 👍. Part 4 is almost ready. Will upload that soon

  • @PoonamSharma-gy3ky
    @PoonamSharma-gy3ky 2 года назад +1

    Content of ur vedios are very good and with a very good explanation as well,,,keep going with good work

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks poonam for the nice words

  • @harshach8314
    @harshach8314 9 месяцев назад +1

    Your explanation is really superb. Ton of thanks whole heartedly 🥳🤝💐

    • @CodeDecode
      @CodeDecode  9 месяцев назад +1

      Thanks for the nice words

  • @diwakar.singh_official
    @diwakar.singh_official 3 года назад +2

    Perfect content.. Please upload on further topics.

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure will upload them soon 👍

  • @venkateshams2351
    @venkateshams2351 Год назад +1

    Great Explanation. Keep continuing these kind of videos. I request you to do video's on java design patterns.

    • @CodeDecode
      @CodeDecode  Год назад

      ruclips.net/p/PLyHJZXNdCXselvpjEhygQ9GlDQihtQj6i

  • @sanzayy
    @sanzayy 3 года назад +1

    Thanks mam....
    Your explanation made the topics very easy to understand.

  • @anuradhau87
    @anuradhau87 3 года назад +1

    Than you so much. Your videos are very helpful to remember easily. with in short time you are giving more content, I am very interesting to watch this videos. Kindly made videos for the remaining topics in java 8.

    • @CodeDecode
      @CodeDecode  3 года назад

      it's almost ready. will upload very soon 👍

  • @sinun1466
    @sinun1466 3 года назад +2

    Please do a video on consumer and supplier with more examples and a video on parallel processing of streams will also be helpful. Thank you

    • @CodeDecode
      @CodeDecode  3 года назад +2

      Will upload this soon. It's almost complete.

    • @sinun1466
      @sinun1466 3 года назад +1

      @@CodeDecode thanks

    • @CodeDecode
      @CodeDecode  3 года назад +1

      👍

  • @moulik9263
    @moulik9263 3 года назад +1

    Good knowledge pls upload further videos. Really thanks a lot

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure will upload soon 👍

  • @pdolley5622
    @pdolley5622 3 года назад +1

    Please upload react n angular questions also... Thank u so much.. Ur way of teaching is incredible... Keep up...

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure. Will upload them soon 👍👍

  • @AbhishekVerma-zg4ov
    @AbhishekVerma-zg4ov 3 года назад +1

    Best video that I've come across for Predicate, Function, Consumer, Supplier, BiXXX.
    Before this never really understood the concept

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Thanks Abhishek 👍👍

  • @pranaythengne2092
    @pranaythengne2092 Год назад +1

    you are amazing mam....plz keep flowing such knowledge with us..

  • @mohitamgaonkarmv
    @mohitamgaonkarmv Год назад +1

    Please keep up the good work.
    You are an excellent teacher.

  • @yuvasmec
    @yuvasmec 2 года назад +1

    Clear explanation with example. way to go

  • @lokeshmuthukumar1284
    @lokeshmuthukumar1284 Год назад +1

    this is very amazing channel, please continue your good work mam❤

    • @CodeDecode
      @CodeDecode  Год назад

      Sure Lokesh you will see more videos on channel 😀

  • @shubhammundhe816
    @shubhammundhe816 3 года назад +1

    Very helpful videos. Thanks

  • @vab8703
    @vab8703 3 года назад +1

    At 1:53 testStringLength(String s) can/should be replaced with just one return statement as follows:
    boolean testStringLength(String s) {
    return s.length() >= 5;
    }

  • @josephnairpudupermanil8679
    @josephnairpudupermanil8679 2 года назад +1

    Great effort Mam

  • @yumraj12
    @yumraj12 Год назад +1

    Hi, You are awesome while describing any thing with code, I am following this channel since long, Do we have a repos for this or all the videos you have?

    • @CodeDecode
      @CodeDecode  Год назад

      🙂 sure will search 🙂🙂

  • @RahulKumar-qv3vp
    @RahulKumar-qv3vp 2 года назад +1

    Watched Pluralsight and other good youtuber videos on java 8 but never explained as clearly as you, I used to tell in interview that i donot know java 8

  • @AkarshKollepara
    @AkarshKollepara Год назад +1

    Thanks for the amazing content, we love you!!

    • @CodeDecode
      @CodeDecode  Год назад

      Thanks Akarsh😇🙏👍👍

  • @Vihaanhyperboy200
    @Vihaanhyperboy200 Год назад +1

    Amazing explanation

  • @ambrish1103
    @ambrish1103 11 месяцев назад +1

    your videos are just too good. thank you

  • @hamzashaikh810
    @hamzashaikh810 3 месяца назад

    Your playlist is life saving mam, Thanks for your details explanation can i get that ppt from which you are teaching it will be huge help thanks

  • @pandiangurunathan5039
    @pandiangurunathan5039 3 года назад +1

    The best explanations... keep posting it

  • @mytechnologies3448
    @mytechnologies3448 3 года назад +1

    Nice contents usual :) but still, we need a lot of interview questions related to Java 8.
    Thank you so much :)

    • @CodeDecode
      @CodeDecode  3 года назад +1

      You will get next video very soon it's almost ready.

    • @sajalmathur549
      @sajalmathur549 3 года назад

      @@CodeDecode Waiting

  • @amitkumar-uj8wz
    @amitkumar-uj8wz 2 года назад

    @Code Decode... Please create a video explaining Java Generics taking some examples of method suggestions that pop up on IDEs, and how to understand there requirements from Generics perspective.
    for e.g.
    obj. {suggestion list : " forEach(Consumer

  • @digitallearning-29
    @digitallearning-29 9 месяцев назад

    really each and every video is full of information and delievered very simple way and could you please upload all souce code for more clarity for the user, all the very best ...keep doing this..thank you

  • @doddakadinesh8114
    @doddakadinesh8114 2 месяца назад

    can you please make a tutorial video on this in built functional interfaces topics as well as streams

  • @paridadeepika
    @paridadeepika Год назад +1

    Very Useful..thanks..

  • @VETRI.90
    @VETRI.90 2 года назад +1

    Awesome 👍

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks a ton vetri 🙂👍

  • @hrancati
    @hrancati 2 года назад +1

    thank you very much, it saved me a lot of ime

  • @DancerLashya
    @DancerLashya 2 года назад

    I have cracked many interviews under your guidance, Can you plan a book or PDF document for Java interviews, It will be really useful...Thank you for sharing your knowledge.

  • @Vihaanhyperboy200
    @Vihaanhyperboy200 3 года назад +1

    Thanks for the awesome videos with nice explanation. You would have put lot of effort..👍

    • @CodeDecode
      @CodeDecode  3 года назад

      Thanks for the motivation Sudhakar 👍👍

  • @kadavakallurajapeddanna5384
    @kadavakallurajapeddanna5384 8 месяцев назад +1

    Thank you so much for providing such a great content.

  • @mrindian7422
    @mrindian7422 7 месяцев назад

    Yes please create playlist for understanding

  • @jeetusonar
    @jeetusonar 3 года назад +3

    Hello mam,
    Please start web services and spring framework interview questions.

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Sure. We do have spring boot playlist. please do check that too. 👍

  • @abiultimate
    @abiultimate 2 года назад +1

    Very nice....

  • @aditisingh6330
    @aditisingh6330 8 месяцев назад

    Hi Code Decode , Can you please make java series on predicting output type interview questions? It will be very very helpful in real time interviews.

  • @priyankachougule4334
    @priyankachougule4334 3 года назад

    Have you explained Generics in any video? Could you please upload if not present? Thanks a ton for all the videos. You are a lifesaver for java interview questions.

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure we will create one Priyanka🙂👍. Thanks

  • @tushaarkd1915
    @tushaarkd1915 2 года назад +1

    grate one

  • @yogaprakash5356
    @yogaprakash5356 2 года назад +1

    Nice

    • @CodeDecode
      @CodeDecode  2 года назад +1

      Thanks and All the best for the interviews

  • @sumathikoduru1077
    @sumathikoduru1077 Год назад

    Very useful and crystal clear explanation.Thank you very much for your videos.
    Can you please explain about the chaining in BiXXX functional interfaces if it's possible in java?

  • @nehatiwari5123
    @nehatiwari5123 3 года назад +1

    Very good lecture

  • @nishabansal9151
    @nishabansal9151 3 года назад +1

    Please upload seperate video on remaining topics also of consumer, supplier and Bi****

    • @CodeDecode
      @CodeDecode  3 года назад +1

      It's almost ready, will upload that soon 👍👍

  • @MVDCREATIONS
    @MVDCREATIONS 3 года назад +1

    very clear explanation

  • @deepashreegs1310
    @deepashreegs1310 3 года назад

    please provide PPT and demos used so that we can brush up quickly before going to interview. Thanks!!

  • @shubhisharma3790
    @shubhisharma3790 3 года назад +1

    One more request, can you please add video on Spring Integration

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure Shubhi, once done with microservices playlist, we will move to this👍👍

  • @sumeetvarma1614
    @sumeetvarma1614 Год назад

    Hi Mam,
    How the combo will work if we have such code snippet below how to guess what will happen first and how it will process:
    doubleIt.andThen(cubeIt).compose(doubleIt).andThen(cubeIt).compose(doubleIt).apply(2)

  • @scorpio9845299597
    @scorpio9845299597 2 года назад

    Very clear and simple explanation thanks a lot. Where & how can we download materials or code samples

  • @Preethipree1
    @Preethipree1 3 года назад +1

    Hi. It's very much clearer. Thanks a lot! 1 question. May I know andThen vs compose? Logically both are same right. We can achieve compose by changing the function order. May I know the differences??
    You are making everything is simple and clear. Could you please explain about Wrapper classes. Even though it's simple I'm struggling to explain when interviewer asks. Also please explain about Spring MVC.

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Yes Preethi, they are logically same 🙂👍. Sure we will cover wrappers and MVC 👍

    • @Preethipree1
      @Preethipree1 3 года назад +1

      @@CodeDecode Wow Thank you! I'm waiting.

    • @CodeDecode
      @CodeDecode  3 года назад

      @@Preethipree1 👍🙂

  • @wmv1990
    @wmv1990 2 года назад

    Excellent video! Thank You.
    On 9:28 please can you show the example of how to do code reusablity, as what I understand is we can not pass arguments in Method Reference way, so how can we reuse code when we can not pass argument in this case ?

  • @tubepankajyou
    @tubepankajyou 3 года назад +1

    You explained it very well... Could you please share Angular knowledge also if possible?

    • @CodeDecode
      @CodeDecode  3 года назад

      ruclips.net/p/PLyHJZXNdCXsfxRtDwtGkDD_lLfTWc1g0i

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Here is what you need Pankaj 👍

    • @tubepankajyou
      @tubepankajyou 3 года назад

      @@CodeDecode Thankyou :)

  • @roliagrawal3124
    @roliagrawal3124 3 года назад +1

    One thing if function can do the functionality of predicate means it can return boolean value then why Java 8 has introduced predicate

    • @CodeDecode
      @CodeDecode  3 года назад +1

      In real time coding in real projects, there are more of conditional checks . To handle those, you are given a flexibility that you don't have to define a return type, just use predicate.

  • @asthagupta2227
    @asthagupta2227 2 года назад +1

    Do u have any classes or course as well. I never commented before on RUclips. Your videos are amazing

    • @CodeDecode
      @CodeDecode  2 года назад

      Hey Astha Thanks for commenting. 👍No Astha We don't have any paid courses or classes, everything is on RUclips completely free. What do u need specifically?

    • @asthagupta2227
      @asthagupta2227 2 года назад +1

      @@CodeDecode Could you please cover Java Streams - Collectors, Stream Builder, Stream support and Short circuit Operators.
      And
      Optional API please

    • @CodeDecode
      @CodeDecode  2 года назад

      Nice Topics Astha. We will target these topics on priority now.

    • @asthagupta2227
      @asthagupta2227 2 года назад

      @@CodeDecode thank you so much. I have shared your RUclips channel link to all my friends

  • @amarthyaseshu683
    @amarthyaseshu683 3 года назад +1

    Thanks for sharing!. Can u also upload more parts with the remaining concepts of J8

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Next video is almost ready it is scheduled for Tuesday morning. Stay tuned for it.

  • @krishnamsr
    @krishnamsr 3 года назад +1

    Really useful helps in quick learning of the concepts in detail. Thank you, can you
    Please make video of design patterns with real time examples.Also can please make videos on JDK 1.11

    • @CodeDecode
      @CodeDecode  3 года назад

      ruclips.net/p/PLyHJZXNdCXselvpjEhygQ9GlDQihtQj6i

    • @CodeDecode
      @CodeDecode  3 года назад

      Thanks Krishna 👍👍

    • @krishnamsr
      @krishnamsr 3 года назад +1

      @@CodeDecode Thank you and looking out for JDk1.11 features please..

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure, wr will create seperate video on that👍👍

  • @sandeep_khangar
    @sandeep_khangar 2 года назад +1

    Code reusability can also be achieved using recursion then why do we need to use Lambada or predicate?

    • @CodeDecode
      @CodeDecode  2 года назад +1

      Recursion is the technique of making a function call itself. Predicate is used to test boolean condition in code. You can't mix different business logics.

  • @sahilbhasin2112
    @sahilbhasin2112 3 года назад +1

    thanks for this topic

  • @ravindrasiddavatam1097
    @ravindrasiddavatam1097 2 месяца назад +1

    Good explanation Mam

  • @pankajpandey2882
    @pankajpandey2882 3 года назад +1

    I have a question. You explained that defining predicate in one class and then we can re use it where ever we want it. But for that the predicate must be defined at class level like member variable of a class. Is it correct?
    Next question is if we do that , is it really object oriented,because can lamda expression be defined as a state of an object ?
    Thank you

    • @CodeDecode
      @CodeDecode  3 года назад

      Hey Pankaj, yes you can create it class level. And yes lamba as already told in previous videos, Lambda is a way to introduce Functional programming in Java. It's not an object oriented concept anyways. 👍👍

    • @pankajpandey2882
      @pankajpandey2882 3 года назад +1

      Thank you . Understood 👍

    • @CodeDecode
      @CodeDecode  3 года назад

      👍👍Anytime Pankaj 👍👍

  • @dineshreddy4369
    @dineshreddy4369 2 года назад +1

    Thanku so much

  • @manojpatil2457
    @manojpatil2457 2 года назад +1

    Hello,thanks for all these videos.
    Do you already work in IT?

    • @CodeDecode
      @CodeDecode  2 года назад +1

      Yes Manoj, we all are working IT professionals working with mncs with work experience ranging from 6 to 10 years

    • @manojpatil2457
      @manojpatil2457 2 года назад

      @@CodeDecode Thanks again....

  • @technoowl
    @technoowl 3 года назад +1

    Very well explained !

  • @hackstreet781
    @hackstreet781 2 года назад

    Another awsome video. Can you please cover microservices with new spring cloud version avoiding any depricated dependencies . Like explain spring cloud gateway instead of zuul and resilience4J instead of hystrix etc.

  • @Jashan77114
    @Jashan77114 2 года назад +1

    Really helpful. Where i can find these docs shown in video?

    • @CodeDecode
      @CodeDecode  2 года назад +1

      Every thing we covered is in the description below Jashandeep 🙂👍. Anything u need??

    • @Jashan77114
      @Jashan77114 2 года назад +1

      @@CodeDecode yeah. I already saw it. But it would be great if we can download docs or ppt shown in your videos. Btw your content is really helpful for interview preparation in short time.🙂

    • @CodeDecode
      @CodeDecode  2 года назад

      Actually we do have messed up docs with blogs urls and sites and many more things which can cause copy right issues for us that's why we don't share it. U need anything specific, we can create a word doc for that topic and share it with u

  • @maheshshete7000
    @maheshshete7000 2 года назад

    Really Helpful

  • @sreeram543
    @sreeram543 3 года назад +1

    Awesome ...please make consumer and supplier concept also

    • @CodeDecode
      @CodeDecode  3 года назад

      It's already available on the playlist👍👍

    • @sreeram543
      @sreeram543 3 года назад

      @@CodeDecode yaa part 4 saw it after posted

    • @sreeram543
      @sreeram543 3 года назад

      @@CodeDecode and also i started ur videos since saturday and finished all except garbage collection .. please upload more and more videos

  • @sattibabuchittala
    @sattibabuchittala 2 года назад +1

    Please do Consumer and Supply as well madam.

    • @CodeDecode
      @CodeDecode  2 года назад

      ruclips.net/video/7-ALyd6OAaQ/видео.html

  • @palanesami
    @palanesami 2 года назад

    Can you please share any ppt with code snippets.it will be very useful to revise

  • @vishalbharat2801
    @vishalbharat2801 3 года назад +1

    hi . can you please create video on collections with the same way which you created for java 8 features like wise concept with example pointing to interview questions . thanks

    • @CodeDecode
      @CodeDecode  3 года назад

      We already have a video on that :
      ruclips.net/video/KfoNYoVUBJI/видео.html

  • @gpradeep123
    @gpradeep123 Год назад +1

    great videos!!

  • @maheshbabu1431
    @maheshbabu1431 2 года назад +1

    While explaining in eclipse please remove unwanted code, we are confusing

  • @dpyecherla9763
    @dpyecherla9763 Год назад

    Could you please provide the presentation link so that it will be very helpful to all of us ...

  • @devanshshrivastava5871
    @devanshshrivastava5871 2 месяца назад

    thanks for the content. but it would be great if you could share the github link for the code