Hi Mansi, I really appreciate your efforts. you recorded all yours interviews and shared with us. This will help everyone who are going for technical interview. Thank you Mansi :)
I must admit, this is one of the best interviews that I have come across. They really went deep diving into core concepts and gave every chance/hint to see if the candidate can catch on to that and give the answers. Usually, We don't often come across such interviewers who make you understand the concept and then give a chance to expand on that answer.
Single responsibility principle ensures that any component or service class you create in your application (let's say BookTicketServiceImpl for example, will concentrate on services like book ticket, cancel ticket, check availability of ticket, find discounts on tickets, where as PaymentServiceImpl will concentrate on doing payment, refunds requests, report payment failure. One service should not provide multiple services in same class)
Thanks for uploading the video, it give me really good insight on my weaker areas. You did a good job, and people who are commenting on other parts, of this video I think we all fumble even at silliest question sometimes in an interview, its the pressure. Thanks and keep uploading, ignore the naysayers. Have to say the questions were tricky.
I have known jpmc employees and I can give it in faith they literally don't know half of the concepts as our friend mansi here knows. It's easier to just shoot questions to people I bet they won't know half of these answers. The string problem he said converting to stream api we use chars the amount of complexity it involves I bet those interviewers won't be aware of. 🤣
@@AstronomyStartTrek2711 yeah even in these stream api are not used in most of the projects also in some of the projects people are using who r interested in implementing
@@AstronomyStartTrek2711 why they asked hard questions. I m doing copy paste in most of my project, how I will solve program questions it's really difficult 🥺
@@RichaBehera129 you are absolutely spot on.streams in my last 7.5 years I used once only freaking once.that too while designing a complex apache Kafka producer/consumer api for a microservice.i bet these lot won't get a chance to do these things in their lifetime
i think the first question you should've asked for that consecutive numbers problem was how many digits should we consider while writing the logic. For example, for 123 I may consider as [1, 2, 3] this case is the consecutive case but i may also consider [12,3] or [1,23]. Since the input was a string I think we cannot make any assumptions on what are the digits. Other than that I think the interview was great, but it was lacking spring/spring boot questions. It was more to the Java side. Thanks
@@surbhi8512 Single responsibility principle is applicable to all the classes, that it should serve a single purpose, not related to single object of a class. Hope I answer your question
The single responsibility principle is all about the coding style known as Clean Code. its just like a piece or art. You can code without adhering to them. But once you are comfortable with those techniques, it's more clear to the people who are going to maintain your code in the future. It show how much you care about developing your module. And in depth once you write your code there only one reason to change the code ( if it is bug free) Ex:- let assume you have Person class, and it will only change if new property is added to the class. It will never change due to a business logic change in another class.
Hi Mansi, thanks a lot for uploading this video. It really helps me to crack my client interview with jp morgan. I got better ideas of questions being asked in Morgan. I appreciate your efforts, thanks a lot again!!!
Single Responsibility principal is not what you explain. It is so simple, one class should have only one responsibility, don't do everything in one class validation, mapper, etc. they should be separate class. That's all.
Tq very much mansi... I'm feeling sad when I comparing with you that much of explanation I can't give . When I listening this record I have raised one question .... Can I explain like this 😭😭😭😭...
I’m surprised domain knowledge interviews are still around, this can be used to eliminate who knows nothing but for most cases: how do you make hire/no hire decision? Based on what? All this can be trained in the matter of weeks/months. Most of cases, mid level candidates are not designing new things. Instead of this: test 1) can candidate code? 2) test some fundamentals oops/java domain knowledge
The interviewer was wrong at 27:04. The method with the string argument will be called because if you pass null as the argument to the overloaded methods , the method with the most specific parameter type will be called. null is compatible with both 'Integer' and 'String' types. However, String is more specific than Integer, so the method with the String argument will be chosen.
Overloading of same method with string, Integer parameters and calling it with null param will give us compile time error ambiguous error right please correct me if I'm wrong guys. Anyways thanks a lot, great work mansion, u helped a lot doing all these basically... 😃
he explained it well but gave the typical library book example which is counter intuitive. (why books will not exist if library is gone? maybe book barcodes, but why books? they can auction the books) better example is notepad application. it may use file objects that are aggregated, but also uses buffer objects that are composed. closing
@@JavaTechies is there any practice test which can help on taking the assessment.. Or any DS/Algorithms to be revisited which can help in clearing the assessment
@@krishnachaitanya4675 I got 3 rounds of interview in one day and after that I got 3 coading challenges links to complete and after that I got congratulations e-mail.
Hey dear I always follow ur interview videos, you have ans such tough questions but why you stuck with null pointer exception in overriding methods.. This simple one
@@JavaTechies Just wanted to know few things - 1) Your overall working experience. 2) MCQ test was based only on Java or some other framework also ? 3) Did you applied through reference or from careers section ? 4 ) What was the overall Interview process ? Btw, thanks for sharing your interview experience. These are very helpful. Keep up the good work.👍
@@jaiamesar1924 Hi Jai Find answers to your questions below 1) 5year 2) java and Spring framework microservices based. 3) I got call from Naukri or companies career portal 4) process was good but they prefer low notice period.
Their interview is so tough i have experienced it. Watever v answer isn't gonna be useful inside project.. I don't know y they make it tough. And sorry but too many ads in between
Do these interviews appears to be fake ? I am sharing realtime experience from my interviews so that it can help all. These are genuine and of anytime I will plan mock interviews then I will mention mock for sure and not realtime. Thanks
Coding Question : Check Consecutive Check this code if it helps Solution is based on cuts [ 1st cut. -> take 1 number , 2nd cut -> take 2 numbers] If anyone has a better soln. please upload will like to know about it public class Main { public static void main(String[] args) { String s = "109110"; String w = s; int n = s.length(); boolean flag = false; for(int i = 1 ; i
Hi Mansi, I really appreciate your efforts. you recorded all yours interviews and shared with us. This will help everyone who are going for technical interview. Thank you Mansi :)
I must admit, this is one of the best interviews that I have come across. They really went deep diving into core concepts and gave every chance/hint to see if the candidate can catch on to that and give the answers. Usually, We don't often come across such interviewers who make you understand the concept and then give a chance to expand on that answer.
Thank you so much
Very brave,tested yourself and made us experience. thanks I've learnt a lot.
The best comment yet. Thank you so much
Excellent Interview.Morgan People are great .Thxnks @Mansi for uploading.
Single responsibility principle ensures that any component or service class you create in your application (let's say BookTicketServiceImpl for example, will concentrate on services like book ticket, cancel ticket, check availability of ticket, find discounts on tickets, where as PaymentServiceImpl will concentrate on doing payment, refunds requests, report payment failure. One service should not provide multiple services in same class)
Thanks
After hearing this interview. I think I should take leave for one month and prepare for this interview. Thanks, a lot Manshi for sharing this.
They said my interview is TODAY! Ahhh!!!
Thanks for uploading the video, it give me really good insight on my weaker areas. You did a good job, and people who are commenting on other parts, of this video I think we all fumble even at silliest question sometimes in an interview, its the pressure. Thanks and keep uploading, ignore the naysayers. Have to say the questions were tricky.
I don't know why these JPMC interviewers are too rude, I have personally experienced it. It is easy to shoot a prepared set of questions to someone.
Right
I have known jpmc employees and I can give it in faith they literally don't know half of the concepts as our friend mansi here knows.
It's easier to just shoot questions to people I bet they won't know half of these answers.
The string problem he said converting to stream api we use chars the amount of complexity it involves I bet those interviewers won't be aware of. 🤣
@@AstronomyStartTrek2711 yeah even in these stream api are not used in most of the projects also in some of the projects people are using who r interested in implementing
@@AstronomyStartTrek2711 why they asked hard questions. I m doing copy paste in most of my project, how I will solve program questions it's really difficult 🥺
@@RichaBehera129 you are absolutely spot on.streams in my last 7.5 years I used once only freaking once.that too while designing a complex apache Kafka producer/consumer api for a microservice.i bet these lot won't get a chance to do these things in their lifetime
This is really nice question for freshers also and give me soo much knowledge
Thank you
@@JavaTechies could you please upload an video for freshers how to apply for a job
Ok
i think the first question you should've asked for that consecutive numbers problem was how many digits should we consider while writing the logic. For example, for 123 I may consider as [1, 2, 3] this case is the consecutive case but i may also consider [12,3] or [1,23]. Since the input was a string I think we cannot make any assumptions on what are the digits. Other than that I think the interview was great, but it was lacking spring/spring boot questions. It was more to the Java side.
Thanks
Thanks
interviewer asking question basically from geeks for geeks because he has taken example from it
This was amazing
Mansi really knows
Thanks buddy
I wander if Single responsibility principle has something to do with Singleton class? Correct me if I am wrong?
Both are different concepts, altogether, right?
@@surbhi8512 Single responsibility principle is applicable to all the classes, that it should serve a single purpose, not related to single object of a class. Hope I answer your question
The single responsibility principle is all about the coding style known as Clean Code. its just like a piece or art.
You can code without adhering to them. But once you are comfortable with those techniques, it's more clear to the people who are going to maintain your code in the future.
It show how much you care about developing your module.
And in depth once you write your code there only one reason to change the code ( if it is bug free)
Ex:- let assume you have Person class, and it will only change if new property is added to the class.
It will never change due to a business logic change in another class.
Hi Mansi,, Thanks for this video
Really a tough interview for 5 years experienced
It's all good. Just 2 points - coding video would have helped more and less advertisements in between. Thanks 👍
Thank you so much
Thanks for uploading, Great interview
Thanks
Hi Mansi, thanks a lot for uploading this video. It really helps me to crack my client interview with jp morgan. I got better ideas of questions being asked in Morgan. I appreciate your efforts, thanks a lot again!!!
Single Responsibility principal is not what you explain.
It is so simple, one class should have only one responsibility, don't do everything in one class validation, mapper, etc. they should be separate class.
That's all.
Right, thanks
Tq for uploading this kind of videos, please upload more videos 📹🙏😊☺
If I got 1 ruppee everytime she said basically, i wouldn't even have to give any job interviews, i'd be so rich.
Tq very much mansi...
I'm feeling sad when I comparing with you that much of explanation I can't give . When I listening this record I have raised one question ....
Can I explain like this 😭😭😭😭...
Hello Thanks for your efforts is it possible for you to display solution or can you please make all interview program questions and solutions video
I am sorry, i currently don't have for this, but for upcoming videos i will upload on GitHub and share link in description
I’m surprised domain knowledge interviews are still around, this can be used to eliminate who knows nothing but for most cases: how do you make hire/no hire decision? Based on what? All this can be trained in the matter of weeks/months. Most of cases, mid level candidates are not designing new things. Instead of this: test 1) can candidate code? 2) test some fundamentals oops/java domain knowledge
On point. These Javatpoint and Tutorialspoint level interview questions cannot judge a candidate's coding ability.
@@AkramShuja this is service based org style..cant do anything...prod based have good interviews
The interviewer was wrong at 27:04. The method with the string argument will be called because if you pass null as the argument to the overloaded methods , the method with the most specific parameter type will be called. null is compatible with both 'Integer' and 'String' types. However, String is more specific than Integer, so the method with the String argument will be chosen.
Correct
Ambiguity error on compilation
Thanks for Sharing @manasi.
Where u r currently working on.???
Overloading of same method with string, Integer parameters and calling it with null param will give us compile time error ambiguous error right please correct me if I'm wrong guys. Anyways thanks a lot, great work mansion, u helped a lot doing all these basically... 😃
Thank you 😊
U know Aggregation vs compositions explained well by Interviewer 😀 basically
Thanks
@@JavaTechies I liked the initiation you took 👍
Yes, actually 😊
he explained it well but gave the typical library book example which is counter intuitive. (why books will not exist if library is gone? maybe book barcodes, but why books? they can auction the books)
better example is notepad application. it may use file objects that are aggregated, but also uses buffer objects that are composed. closing
Really helpful
basically mansi
Did you use notepad or IDE like eclipse to write your code during interview
Yes, ide generally
Super tq's a lot......
Welcome 🙏
Did you have any hackerrank assessment before this?
Yes
@@JavaTechies is there any practice test which can help on taking the assessment.. Or any DS/Algorithms to be revisited which can help in clearing the assessment
Hi Mansi, can you please share sample resume for experienced developers
Core java me SOID principles. is it core java part? funny interviewer. :)
Well starts with core java. And I hear SOLID.
Composition is stronger than aggregation
Correct
This video sound is low but there is an ongoing super loud phone vibration ring,
Super interview nen itey half loney out ipota... Nak repu JPMorgan interview undi😞😞😞😞
naaku inko two days lo vundi..? Em adigaaru?
@@krishnachaitanya4675 mottam hash map , flat map and concurrent hash map internal functionality......... Tippi tippi confuse chedi adigaru
@@vemulaswetha1333 any coding related things?
@@krishnachaitanya4675 I got 3 rounds of interview in one day and after that I got 3 coading challenges links to complete and after that I got congratulations e-mail.
@@vemulaswetha1333 congratulations
SOLID Principles are not related to design patterns
Right SOLID principles 5 in total if i am not wrong is way different.
Solid have 5 principle but comes under design pattern only
@@RichaBehera129 some authors don't classify it under design patterns..rather a complete different entity.Maybe some do but I have never seen that.
@@AstronomyStartTrek2711 oh ok 👍
There are Java Design pattern, J2EE design pattern, microservice design pattern SOLID pattern. All are different
Hey dear I always follow ur interview videos, you have ans such tough questions but why you stuck with null pointer exception in overriding methods.. This simple one
It happens
Was there any coding round before Technical Interview ?
Yes, it's level was good, it had MCQ mostly but output questions
@@JavaTechies Just wanted to know few things -
1) Your overall working experience.
2) MCQ test was based only on Java or some other framework also ?
3) Did you applied through reference or from careers section ?
4 ) What was the overall Interview process ?
Btw, thanks for sharing your interview experience. These are very helpful. Keep up the good work.👍
@@jaiamesar1924 Hi Jai
Find answers to your questions below
1) 5year
2) java and Spring framework microservices based.
3) I got call from Naukri or companies career portal
4) process was good but they prefer low notice period.
I am having 4.3 years of experience as Java developer And my current PKG is below 7 Lpa. What should I expect as per current market standards??
13L - 25L P.A
Sky is the limit!
Bro...You can ask 14LPA
Depends on your performance. You should have very good knowledge and communication skill to get more than 10-12 lacs
@@vibesoflife97 Please share your current LPA as of date.
Too much Basically. Btw Thank you ☺️
You're welcome
Their interview is so tough i have experienced it. Watever v answer isn't gonna be useful inside project.. I don't know y they make it tough. And sorry but too many ads in between
Yes, I will try to restrict ads to start and end
@@JavaTechies 🙂
Please add captions
this would be very helpful for folks around the globe who don't understand the accents too well
Please be proud of yourself Mansi. You a star.
Thank you so much
Hello Mansi you got selected or not.
Yes she got selected
Why is he asking so many questions. This is the reason why people get more stress in IT jobs
Good content but too many advertise, can't focus on interview 🙄
Ok, I try to reduce
Hired or no ?
No
Really so many interviews you gave or these are just fake interviews you are uploading?
Do these interviews appears to be fake ? I am sharing realtime experience from my interviews so that it can help all. These are genuine and of anytime I will plan mock interviews then I will mention mock for sure and not realtime.
Thanks
@@JavaTechies Thanks for confirmation, now I can hear your interviews without barriers !
@@muralikommuru5992 most welcome
What is the experience level ?
Most of interview are between 2 to 5 years of experience
Too many ads I can't concentrate on the content
Have you cleared this round?
Yes
@@JavaTechies did u join jp? also was this for Mumbai location?
😮
too much basically :)
🙏🙏😀
😂😂
Coding Question : Check Consecutive Check this code if it helps
Solution is based on cuts [ 1st cut. -> take 1 number , 2nd cut -> take 2 numbers]
If anyone has a better soln. please upload will like to know about it
public class Main {
public static void main(String[] args) {
String s = "109110";
String w = s;
int n = s.length();
boolean flag = false;
for(int i = 1 ; i
Thank you so much
I tried to use String builder to solve this problem
public class StringIsAConsOrNot {
public static void main(String[] args) {
String s = "101112131415";
if (isConsecutive(s)) {
System.out.println("The string represents consecutive integers.");
} else {
System.out.println("The string does not represent consecutive integers.");
}
}
private static boolean isConsecutive(String s) {
for(int i=1;i
Pretty bad. S stands for singleton ?😂