No video

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

  Рет қаралды 142,651

Code Decode

Code Decode

Күн бұрын

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

Пікірлер: 273
@gyanprakash302
@gyanprakash302 2 жыл бұрын
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 жыл бұрын
Guys this is my first comment in KZfaq 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 жыл бұрын
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 жыл бұрын
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 жыл бұрын
Thanks Kusuma. Thanks for writing back to us. Much Appreciated.
@jain_sahil
@jain_sahil Жыл бұрын
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 Жыл бұрын
You will rock Sahil . Keep learning keep shining Man 🎉🎉 all the very best 👍👍👍👍
@Priya1_123
@Priya1_123 2 жыл бұрын
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 жыл бұрын
This channel provides a better Explanation than courses available on PluralSight. Thanks for video
@CodeDecode
@CodeDecode 2 жыл бұрын
Hehe . Thanks for such a unique and awesome compliment Sumeet. Means a lot to us 🙂🙂👏👏
@poojarenake5913
@poojarenake5913 11 ай бұрын
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.
@soumyadas9939
@soumyadas9939 5 ай бұрын
Thank you for such clear explanation of these java 8 features along with easy to understand examples.
@venkatarakesh1694
@venkatarakesh1694 2 жыл бұрын
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.
@sureshgarine
@sureshgarine 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🙏.
@johnpeter6237
@johnpeter6237 3 жыл бұрын
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
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks John 👍
@OmSriUdayaKumarGade
@OmSriUdayaKumarGade 3 жыл бұрын
Thanks for sharing the Java 8 features and the way explained concepts are really understandable.
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks Omsri 👍🙂
@rajatram5068
@rajatram5068 3 жыл бұрын
Very good explanation best channel to preparing for interview . Thank you
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks 👍
@sivakirankakileti
@sivakirankakileti 3 жыл бұрын
What a crystal clear explanation!! Thanks a lot for sharing knowledge 👏
@CodeDecode
@CodeDecode 3 жыл бұрын
🙏🙏👍👍
@SriHariChukka1210
@SriHariChukka1210 2 жыл бұрын
much appreciated for the explanation madam, you deserve my subscription of this channel
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Srihari 🙂👍
@manognajoshik8465
@manognajoshik8465 2 жыл бұрын
Hi mam, i have suggested your series to many of my friends, awesome work 🙏
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks for supporting us Manogna 🙂👍
@priyankasundar3497
@priyankasundar3497 Жыл бұрын
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
@mekalayellaiah9793
@mekalayellaiah9793 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.
@duraisinghjebastin9740
@duraisinghjebastin9740 2 жыл бұрын
Very useful video to understand about predicate and function 👍
@karthikeyanu2115
@karthikeyanu2115 3 жыл бұрын
Helps to understand easily and expecting a video on other functional interfaces soon Thanks
@CodeDecode
@CodeDecode 3 жыл бұрын
Will upload soon 👍
@AkarshKollepara
@AkarshKollepara Жыл бұрын
Thanks for the amazing content, we love you!!
@CodeDecode
@CodeDecode Жыл бұрын
Thanks Akarsh😇🙏👍👍
@mnaresh12
@mnaresh12 3 жыл бұрын
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 жыл бұрын
kzfaq.info/sun/PLyHJZXNdCXsdeusn4OM33415DCMQ6sUKy
@_randomstuff
@_randomstuff 2 жыл бұрын
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.
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks a lot 🙂🙂
@harshach8314
@harshach8314 8 ай бұрын
Your explanation is really superb. Ton of thanks whole heartedly 🥳🤝💐
@CodeDecode
@CodeDecode 8 ай бұрын
Thanks for the nice words
@kadavakallurajapeddanna5384
@kadavakallurajapeddanna5384 7 ай бұрын
Thank you so much for providing such a great content.
@CodeDecode
@CodeDecode 7 ай бұрын
👍👍
@sanzayy
@sanzayy 3 жыл бұрын
Thanks mam.... Your explanation made the topics very easy to understand.
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks Sanjay 👍👍
@anuradhau87
@anuradhau87 3 жыл бұрын
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 👍
@kishoredanti5769
@kishoredanti5769 3 жыл бұрын
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 жыл бұрын
Thanks 👍. Part 4 is almost ready. Will upload that soon
@pranaythengne2092
@pranaythengne2092 Жыл бұрын
you are amazing mam....plz keep flowing such knowledge with us..
@CodeDecode
@CodeDecode Жыл бұрын
Thanks a lot Pranay🙂👍
@shubhammundhe816
@shubhammundhe816 2 жыл бұрын
Very helpful videos. Thanks
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks..
@PoonamSharma-gy3ky
@PoonamSharma-gy3ky 2 жыл бұрын
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
@yuvasmec
@yuvasmec 2 жыл бұрын
Clear explanation with example. way to go
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks 🙂🙂👍👍
@lokeshmuthukumar1284
@lokeshmuthukumar1284 Жыл бұрын
this is very amazing channel, please continue your good work mam❤
@CodeDecode
@CodeDecode Жыл бұрын
Sure Lokesh you will see more videos on channel 😀
@shruthipadmaprabha5138
@shruthipadmaprabha5138 3 жыл бұрын
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 🙏
@josephnairpudupermanil8679
@josephnairpudupermanil8679 2 жыл бұрын
Great effort Mam
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Joseph 🙂👍
@diwakar.singh_official
@diwakar.singh_official 3 жыл бұрын
Perfect content.. Please upload on further topics.
@CodeDecode
@CodeDecode 3 жыл бұрын
Sure will upload them soon 👍
@Vihaanhyperboy200
@Vihaanhyperboy200 Жыл бұрын
Amazing explanation
@CodeDecode
@CodeDecode Жыл бұрын
Thanks
@moulik9263
@moulik9263 3 жыл бұрын
Good knowledge pls upload further videos. Really thanks a lot
@CodeDecode
@CodeDecode 3 жыл бұрын
Sure will upload soon 👍
@hrancati
@hrancati Жыл бұрын
thank you very much, it saved me a lot of ime
@CodeDecode
@CodeDecode Жыл бұрын
you're welcome
@pandiangurunathan5039
@pandiangurunathan5039 3 жыл бұрын
The best explanations... keep posting it
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks.....
@AbhishekVerma-zg4ov
@AbhishekVerma-zg4ov 3 жыл бұрын
Best video that I've come across for Predicate, Function, Consumer, Supplier, BiXXX. Before this never really understood the concept
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks Abhishek 👍👍
@venkateshams2351
@venkateshams2351 Жыл бұрын
Great Explanation. Keep continuing these kind of videos. I request you to do video's on java design patterns.
@CodeDecode
@CodeDecode Жыл бұрын
kzfaq.info/sun/PLyHJZXNdCXselvpjEhygQ9GlDQihtQj6i
@mohitamgaonkarmv
@mohitamgaonkarmv Жыл бұрын
Please keep up the good work. You are an excellent teacher.
@CodeDecode
@CodeDecode Жыл бұрын
Thanks 🙏🙏👍
@ambrish1103
@ambrish1103 10 ай бұрын
your videos are just too good. thank you
@CodeDecode
@CodeDecode 9 ай бұрын
You’re welcome
@jyothibhima9705
@jyothibhima9705 3 жыл бұрын
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.
@paridadeepika
@paridadeepika Жыл бұрын
Very Useful..thanks..
@CodeDecode
@CodeDecode Жыл бұрын
you're welcome
@pdolley5622
@pdolley5622 3 жыл бұрын
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 👍👍
@RahulKumar-qv3vp
@RahulKumar-qv3vp 2 жыл бұрын
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
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Rahul🙂
@VETRI.90
@VETRI.90 2 жыл бұрын
Awesome 👍
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks a ton vetri 🙂👍
@vab8703
@vab8703 3 жыл бұрын
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; }
@digitallearning-29
@digitallearning-29 7 ай бұрын
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
@ravindrasiddavatam1097
@ravindrasiddavatam1097 17 күн бұрын
Good explanation Mam
@CodeDecode
@CodeDecode 9 күн бұрын
Thanks
@sinun1466
@sinun1466 3 жыл бұрын
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 жыл бұрын
Will upload this soon. It's almost complete.
@sinun1466
@sinun1466 3 жыл бұрын
@@CodeDecode thanks
@CodeDecode
@CodeDecode 3 жыл бұрын
👍
@Vihaanhyperboy200
@Vihaanhyperboy200 3 жыл бұрын
Thanks for the awesome videos with nice explanation. You would have put lot of effort..👍
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks for the motivation Sudhakar 👍👍
@mytechnologies3448
@mytechnologies3448 3 жыл бұрын
Nice contents usual :) but still, we need a lot of interview questions related to Java 8. Thank you so much :)
@CodeDecode
@CodeDecode 3 жыл бұрын
You will get next video very soon it's almost ready.
@sajalmathur549
@sajalmathur549 3 жыл бұрын
@@CodeDecode Waiting
@abiultimate
@abiultimate 2 жыл бұрын
Very nice....
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Abirami👍🙂
@hamzashaikh810
@hamzashaikh810 Ай бұрын
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
@tushaarkd1915
@tushaarkd1915 2 жыл бұрын
grate one
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Tushaar 🙂🙂
@thanipattavan
@thanipattavan 6 ай бұрын
Thanks a lot to you
@CodeDecode
@CodeDecode 6 ай бұрын
👍👍
@mrindian7422
@mrindian7422 5 ай бұрын
Yes please create playlist for understanding
@yumraj12
@yumraj12 10 ай бұрын
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 10 ай бұрын
🙂 sure will search 🙂🙂
@Ravi-qq4mn
@Ravi-qq4mn 3 ай бұрын
your video is awesome
@CodeDecode
@CodeDecode 3 ай бұрын
Thanks Ravi 😊👍
@gpradeep123
@gpradeep123 Жыл бұрын
great videos!!
@CodeDecode
@CodeDecode Жыл бұрын
Thanks
@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
@nehatiwari5123
@nehatiwari5123 3 жыл бұрын
Very good lecture
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks 👍
@MVDCREATIONS
@MVDCREATIONS 3 жыл бұрын
very clear explanation
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks ....
@dineshreddy4369
@dineshreddy4369 Жыл бұрын
Thanku so much
@CodeDecode
@CodeDecode Жыл бұрын
you're welcome
@yogaprakash5356
@yogaprakash5356 2 жыл бұрын
Nice
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks and All the best for the interviews
@technoowl
@technoowl 3 жыл бұрын
Very well explained !
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks
@012345678912345127
@012345678912345127 3 жыл бұрын
Really nice, tq for sharing awesome knowledge...and can you please share code and relevant information data..
@CodeDecode
@CodeDecode 3 жыл бұрын
Will upload this on git and will give you the link to clone soon 👍
@012345678912345127
@012345678912345127 3 жыл бұрын
@@CodeDecode ok tq.. Plz share link......
@CodeDecode
@CodeDecode 3 жыл бұрын
Hi, Below is the git link. Please let me know if you are able to clone and get the code base for reference. git@github.com:codedecode25/Java-8-demos.git or github.com/codedecode25/Java-8-demos.git
@DancerLashya
@DancerLashya Жыл бұрын
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.
@maheshshete7000
@maheshshete7000 2 жыл бұрын
Really Helpful
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks mahesh
@karanjavkarahul
@karanjavkarahul 2 жыл бұрын
Subscribed.... Thanks...
@CodeDecode
@CodeDecode 2 жыл бұрын
🙂🙂
@sahilbhasin2112
@sahilbhasin2112 3 жыл бұрын
thanks for this topic
@CodeDecode
@CodeDecode 3 жыл бұрын
👍
@doddakadinesh8114
@doddakadinesh8114 Ай бұрын
can you please make a tutorial video on this in built functional interfaces topics as well as streams
@jeetusonar
@jeetusonar 3 жыл бұрын
Hello mam, Please start web services and spring framework interview questions.
@CodeDecode
@CodeDecode 3 жыл бұрын
Sure. We do have spring boot playlist. please do check that too. 👍
@aditisingh6330
@aditisingh6330 7 ай бұрын
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.
@Preethipree1
@Preethipree1 3 жыл бұрын
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 жыл бұрын
Yes Preethi, they are logically same 🙂👍. Sure we will cover wrappers and MVC 👍
@Preethipree1
@Preethipree1 3 жыл бұрын
@@CodeDecode Wow Thank you! I'm waiting.
@CodeDecode
@CodeDecode 3 жыл бұрын
@@Preethipree1 👍🙂
@ambrish1103
@ambrish1103 10 ай бұрын
Thanks!
@CodeDecode
@CodeDecode 10 ай бұрын
Thanks for the support
@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?
@krishnamsr
@krishnamsr 3 жыл бұрын
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 жыл бұрын
kzfaq.info/sun/PLyHJZXNdCXselvpjEhygQ9GlDQihtQj6i
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks Krishna 👍👍
@krishnamsr
@krishnamsr 3 жыл бұрын
@@CodeDecode Thank you and looking out for JDk1.11 features please..
@CodeDecode
@CodeDecode 3 жыл бұрын
Sure, wr will create seperate video on that👍👍
@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
@nishabansal9151
@nishabansal9151 3 жыл бұрын
Please upload seperate video on remaining topics also of consumer, supplier and Bi****
@CodeDecode
@CodeDecode 3 жыл бұрын
It's almost ready, will upload that soon 👍👍
@tubepankajyou
@tubepankajyou 3 жыл бұрын
You explained it very well... Could you please share Angular knowledge also if possible?
@CodeDecode
@CodeDecode 3 жыл бұрын
kzfaq.info/sun/PLyHJZXNdCXsfxRtDwtGkDD_lLfTWc1g0i
@CodeDecode
@CodeDecode 3 жыл бұрын
Here is what you need Pankaj 👍
@tubepankajyou
@tubepankajyou 3 жыл бұрын
@@CodeDecode Thankyou :)
@start1learn-n171
@start1learn-n171 7 ай бұрын
Tq
@CodeDecode
@CodeDecode 7 ай бұрын
😊 your welcome!!
@deepashreegs1310
@deepashreegs1310 3 жыл бұрын
please provide PPT and demos used so that we can brush up quickly before going to interview. Thanks!!
@scorpio9845299597
@scorpio9845299597 2 жыл бұрын
Very clear and simple explanation thanks a lot. Where & how can we download materials or code samples
@sattibabuchittala
@sattibabuchittala 2 жыл бұрын
Please do Consumer and Supply as well madam.
@CodeDecode
@CodeDecode 2 жыл бұрын
kzfaq.info/get/bejne/bZNxf9yVm7WlkYU.html
@roliagrawal3124
@roliagrawal3124 2 жыл бұрын
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 2 жыл бұрын
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.
@shubhamnayak668
@shubhamnayak668 3 жыл бұрын
Awesome
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks 👍
@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 ?
@sreeram543
@sreeram543 3 жыл бұрын
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
@asthagupta2227
@asthagupta2227 2 жыл бұрын
Do u have any classes or course as well. I never commented before on KZfaq. 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 KZfaq completely free. What do u need specifically?
@asthagupta2227
@asthagupta2227 2 жыл бұрын
@@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 KZfaq channel link to all my friends
@shubhisharma3790
@shubhisharma3790 3 жыл бұрын
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👍👍
@hackstreet781
@hackstreet781 Жыл бұрын
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.
@amarthyaseshu683
@amarthyaseshu683 3 жыл бұрын
Thanks for sharing!. Can u also upload more parts with the remaining concepts of J8
@CodeDecode
@CodeDecode 3 жыл бұрын
Next video is almost ready it is scheduled for Tuesday morning. Stay tuned for it.
@manojpatil2457
@manojpatil2457 2 жыл бұрын
Hello,thanks for all these videos. Do you already work in IT?
@CodeDecode
@CodeDecode 2 жыл бұрын
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....
@sandeep_khangar
@sandeep_khangar 2 жыл бұрын
Code reusability can also be achieved using recursion then why do we need to use Lambada or predicate?
@CodeDecode
@CodeDecode 2 жыл бұрын
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.
@devanshshrivastava5871
@devanshshrivastava5871 Ай бұрын
thanks for the content. but it would be great if you could share the github link for the code
Prank vs Prank #shorts
00:28
Mr DegrEE
Рет қаралды 4,2 МЛН
Magic trick 🪄😁
00:13
Andrey Grechka
Рет қаралды 40 МЛН
Fast and Furious: New Zealand 🚗
00:29
How Ridiculous
Рет қаралды 49 МЛН
لااا! هذه البرتقالة مزعجة جدًا #قصير
00:15
One More Arabic
Рет қаралды 51 МЛН
JDK8 Stream API (Complete Course) | By Mr. Suman
2:27:19
SreenuTech
Рет қаралды 23 М.
Java 1.8 New Features :  Predicate Functional Interface by Durga sir
1:32:37
Durga Software Solutions
Рет қаралды 18 М.
Prank vs Prank #shorts
00:28
Mr DegrEE
Рет қаралды 4,2 МЛН