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

  Рет қаралды 138,418

Code Decode

Code Decode

3 жыл бұрын

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/udemycourse
Course Description Video :
yt.openinapp.co/dmjvd
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 : kzbin.info?...
Linkedin : / codedecodeyoutube
Instagram : / codedecode25
--------------------------------------------------------------------------------------------------------------------------------------
#java8InterviewQuestions #java8newfeatures #java8

Пікірлер: 270
@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 KZbin 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 👍👍🙏🙏
@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 👍👍👍👍
@poojarenake5913
@poojarenake5913 10 ай бұрын
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.
@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 🙂🙂👏👏
@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.
@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 👍👍
@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 ⭐✨⭐✨
@soumyadas9939
@soumyadas9939 3 ай бұрын
Thank you for such clear explanation of these java 8 features along with easy to understand examples.
@AkarshKollepara
@AkarshKollepara Жыл бұрын
Thanks for the amazing content, we love you!!
@CodeDecode
@CodeDecode Жыл бұрын
Thanks Akarsh😇🙏👍👍
@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🙏.
@OmSriUdayaKumarGade
@OmSriUdayaKumarGade 2 жыл бұрын
Thanks for sharing the Java 8 features and the way explained concepts are really understandable.
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Omsri 👍🙂
@duraisinghjebastin9740
@duraisinghjebastin9740 2 жыл бұрын
Very useful video to understand about predicate and function 👍
@sivakirankakileti
@sivakirankakileti 3 жыл бұрын
What a crystal clear explanation!! Thanks a lot for sharing knowledge 👏
@CodeDecode
@CodeDecode 3 жыл бұрын
🙏🙏👍👍
@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.
@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.
@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 👍
@rajatram5068
@rajatram5068 3 жыл бұрын
Very good explanation best channel to preparing for interview . Thank you
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks 👍
@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 11 ай бұрын
Thanks a lot Priyanka ❤️❤️ means a lot to us
@karthikeyanu2115
@karthikeyanu2115 3 жыл бұрын
Helps to understand easily and expecting a video on other functional interfaces soon Thanks
@CodeDecode
@CodeDecode 3 жыл бұрын
Will upload soon 👍
@SriHariChukka1210
@SriHariChukka1210 2 жыл бұрын
much appreciated for the explanation madam, you deserve my subscription of this channel
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Srihari 🙂👍
@shubhammundhe816
@shubhammundhe816 2 жыл бұрын
Very helpful videos. Thanks
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks..
@yuvasmec
@yuvasmec 2 жыл бұрын
Clear explanation with example. way to go
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks 🙂🙂👍👍
@sudhakarmallampati2800
@sudhakarmallampati2800 3 жыл бұрын
Thanks for the awesome videos with nice explanation. You would have put lot of effort..👍
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks for the motivation Sudhakar 👍👍
@pandiangurunathan5039
@pandiangurunathan5039 3 жыл бұрын
The best explanations... keep posting it
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks.....
@ambrish1103
@ambrish1103 8 ай бұрын
your videos are just too good. thank you
@CodeDecode
@CodeDecode 8 ай бұрын
You’re welcome
@hrancati
@hrancati Жыл бұрын
thank you very much, it saved me a lot of ime
@CodeDecode
@CodeDecode Жыл бұрын
you're welcome
@kadavakallurajapeddanna5384
@kadavakallurajapeddanna5384 5 ай бұрын
Thank you so much for providing such a great content.
@CodeDecode
@CodeDecode 5 ай бұрын
👍👍
@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
@_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 🙂🙂
@sanzayy
@sanzayy 3 жыл бұрын
Thanks mam.... Your explanation made the topics very easy to understand.
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks Sanjay 👍👍
@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 🙂👍
@paridadeepika
@paridadeepika 11 ай бұрын
Very Useful..thanks..
@CodeDecode
@CodeDecode 11 ай бұрын
you're welcome
@moulik9263
@moulik9263 3 жыл бұрын
Good knowledge pls upload further videos. Really thanks a lot
@CodeDecode
@CodeDecode 3 жыл бұрын
Sure will upload soon 👍
@harshach8314
@harshach8314 7 ай бұрын
Your explanation is really superb. Ton of thanks whole heartedly 🥳🤝💐
@CodeDecode
@CodeDecode 6 ай бұрын
Thanks for the nice words
@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 👍👍
@pranaythengne2092
@pranaythengne2092 Жыл бұрын
you are amazing mam....plz keep flowing such knowledge with us..
@CodeDecode
@CodeDecode Жыл бұрын
Thanks a lot Pranay🙂👍
@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 👍
@ashokkhatri9005
@ashokkhatri9005 6 ай бұрын
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
@mohitamgaonkarmv
@mohitamgaonkarmv Жыл бұрын
Please keep up the good work. You are an excellent teacher.
@CodeDecode
@CodeDecode Жыл бұрын
Thanks 🙏🙏👍
@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
@sudhakarmallampati2800
@sudhakarmallampati2800 Жыл бұрын
Amazing explanation
@CodeDecode
@CodeDecode Жыл бұрын
Thanks
@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
@diwakar.singh_official
@diwakar.singh_official 3 жыл бұрын
Perfect content.. Please upload on further topics.
@CodeDecode
@CodeDecode 3 жыл бұрын
Sure will upload them soon 👍
@josephnairpudupermanil8679
@josephnairpudupermanil8679 2 жыл бұрын
Great effort Mam
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Joseph 🙂👍
@lokeshmuthukumar1284
@lokeshmuthukumar1284 Жыл бұрын
this is very amazing channel, please continue your good work mam❤
@CodeDecode
@CodeDecode Жыл бұрын
Sure Lokesh you will see more videos on channel 😀
@venkateshams2351
@venkateshams2351 Жыл бұрын
Great Explanation. Keep continuing these kind of videos. I request you to do video's on java design patterns.
@CodeDecode
@CodeDecode Жыл бұрын
kzbin.info/aero/PLyHJZXNdCXselvpjEhygQ9GlDQihtQj6i
@mrindian7422
@mrindian7422 4 ай бұрын
Yes please create playlist for understanding
@technoowl
@technoowl 3 жыл бұрын
Very well explained !
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks
@mnaresh12
@mnaresh12 2 жыл бұрын
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 2 жыл бұрын
kzbin.info/aero/PLyHJZXNdCXsdeusn4OM33415DCMQ6sUKy
@VETRI.90
@VETRI.90 2 жыл бұрын
Awesome 👍
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks a ton vetri 🙂👍
@maheshshete7000
@maheshshete7000 2 жыл бұрын
Really Helpful
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks mahesh
@gpradeep123
@gpradeep123 Жыл бұрын
great videos!!
@CodeDecode
@CodeDecode Жыл бұрын
Thanks
@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.
@karanjavkarahul
@karanjavkarahul Жыл бұрын
Subscribed.... Thanks...
@CodeDecode
@CodeDecode Жыл бұрын
🙂🙂
@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 👍👍
@abiultimate
@abiultimate 2 жыл бұрын
Very nice....
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Abirami👍🙂
@dineshreddy4369
@dineshreddy4369 Жыл бұрын
Thanku so much
@CodeDecode
@CodeDecode Жыл бұрын
you're welcome
@thanipattavan
@thanipattavan 5 ай бұрын
Thanks a lot to you
@CodeDecode
@CodeDecode 5 ай бұрын
👍👍
@MVDCREATIONS
@MVDCREATIONS 3 жыл бұрын
very clear explanation
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks ....
@sumathikoduru1077
@sumathikoduru1077 11 ай бұрын
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?
@ambrish1103
@ambrish1103 8 ай бұрын
Thanks!
@CodeDecode
@CodeDecode 8 ай бұрын
Thanks for the support
@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.
@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; }
@hamzashaikh810
@hamzashaikh810 21 күн бұрын
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
@Ravi-qq4mn
@Ravi-qq4mn 2 ай бұрын
your video is awesome
@CodeDecode
@CodeDecode 2 ай бұрын
Thanks Ravi 😊👍
@tushaarkd1915
@tushaarkd1915 2 жыл бұрын
grate one
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Tushaar 🙂🙂
@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.
@shreyasoni6223
@shreyasoni6223 2 жыл бұрын
Very nice explanation , can there be a combo of andThen() and compose() in functional chaining ?
@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 ?
@sahilbhasin2112
@sahilbhasin2112 3 жыл бұрын
thanks for this topic
@CodeDecode
@CodeDecode 3 жыл бұрын
👍
@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🙂
@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 🙏
@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 👍
@yumraj12
@yumraj12 9 ай бұрын
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 9 ай бұрын
🙂 sure will search 🙂🙂
@scorpio9845299597
@scorpio9845299597 2 жыл бұрын
Very clear and simple explanation thanks a lot. Where & how can we download materials or code samples
@doddakadinesh8114
@doddakadinesh8114 4 күн бұрын
can you please make a tutorial video on this in built functional interfaces topics as well as streams
@yogaprakash5356
@yogaprakash5356 2 жыл бұрын
Nice
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks and All the best for the interviews
@aditisingh6330
@aditisingh6330 6 ай бұрын
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
@deepashreegs1310
@deepashreegs1310 3 жыл бұрын
please provide PPT and demos used so that we can brush up quickly before going to interview. 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 жыл бұрын
👍
@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.
@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 жыл бұрын
kzbin.info/aero/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👍👍
@shubhamnayak668
@shubhamnayak668 3 жыл бұрын
Awesome
@CodeDecode
@CodeDecode 3 жыл бұрын
Thanks 👍
@start1learn-n171
@start1learn-n171 5 ай бұрын
Tq
@CodeDecode
@CodeDecode 5 ай бұрын
😊 your welcome!!
@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
@jayeshamodkar7951
@jayeshamodkar7951 3 жыл бұрын
Hi, Thank you for such informative videos. Can you please tell us from where we can get this ppt's which you have prepared. Thanks in advance.
@CodeDecode
@CodeDecode 3 жыл бұрын
Hi Jayesh, it's just a random points that I add to ppt for my reference so that I don't forget what I need to teach in that session . It's just rough points.
@lakshmicherukuri3238
@lakshmicherukuri3238 2 жыл бұрын
Do you have the pdf for your explanation. Your explanation is awesome.
@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. 👍
@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 👍👍
@prashusaxena1023
@prashusaxena1023 5 ай бұрын
Do we have a github repo link as a reference code of these tutorials
@tubepankajyou
@tubepankajyou 3 жыл бұрын
You explained it very well... Could you please share Angular knowledge also if possible?
@CodeDecode
@CodeDecode 3 жыл бұрын
kzbin.info/aero/PLyHJZXNdCXsfxRtDwtGkDD_lLfTWc1g0i
@CodeDecode
@CodeDecode 3 жыл бұрын
Here is what you need Pankaj 👍
@tubepankajyou
@tubepankajyou 3 жыл бұрын
@@CodeDecode Thankyou :)
@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 👍🙂
@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
@palanesami
@palanesami 2 жыл бұрын
Can you please share any ppt with code snippets.it will be very useful to revise
@vishalbharat2801
@vishalbharat2801 3 жыл бұрын
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 : kzbin.info/www/bejne/gZfSf4yli7p1gKs
@adityajasood4891
@adityajasood4891 Жыл бұрын
can anyone please explain this Write a Java program to display those starting with A and having length of 3 characters in java8. given string array. i tried to use filter and store it in two different list based on different condition, then was function chaining required? I was not able to complete this
@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....
MEGA BOXES ARE BACK!!!
08:53
Brawl Stars
Рет қаралды 36 МЛН
Русалка
01:00
История одного вокалиста
Рет қаралды 5 МЛН
Functional Interface | Lambda Expression in Java
13:56
Telusko
Рет қаралды 139 М.
Top 25 Microservice Interview Questions Answered - Java Brains
39:54
Lambda Expressions in Java - Full Simple Tutorial
13:05
Coding with John
Рет қаралды 715 М.