L&T Java Developer Interview Experience for 4+ years ! Very Important Java Coding Question covered

preview_player
Показать описание
All Study Materials that helped me in Cracking Java Interview -

For 1:1 Session -

33 interview videos playlist -

L&T Java Developer Interview Experience for 4+ years ! Very Important Java Coding Question covered

Here, we dive deep into the world of IT, covering a wide range of topics including Core Java concepts, Spring Boot, Microservices, Java interview experiences for both freshers and experienced professionals, and insights into the dynamic IT life.

Whether you're just starting your IT journey or looking to enhance your skills and knowledge, you'll find valuable content tailored to your needs. Our goal is to provide comprehensive resources, tutorials, tips, and real-world experiences to help you succeed in the ever-evolving technology field.

🎯 Ready to ace your interviews and level up your career? Book a personalized 1:1 mentorship session with me!

In this exclusive mentorship program, you'll get tailored guidance and expert insights to help you excel in your interviews and achieve your career goals. Whether you're preparing for a job interview, seeking career advice, or aiming for professional growth, I'm here to support you every step of the way.

Book Here ⬇️

Don't forget to hit the subscribe button and turn on notifications so you never miss out on our latest uploads. Thank you for joining us on this exciting journey through the IT world!
Рекомендации по теме
Комментарии
Автор

To check if a nonpal string can be made palindrome, just count the character counts, if length is even all the count should be devisable by 2 and if the length is odd one char is allowed can have count 1 and rest should be devisable by 2. example -> gffaa (not pal) but as g= 1, f =2 and a = 2 it can be made pal by shuffling "fagaf", I guess he was expecting this answer

abhijitsalunkhe
Автор

after i saw this problem i tried this solution upto like for odd string and got suggestion on gpt to correct it hope it will help others to solve this one.
refer following code
public static boolean str) {
int oddcount = 0;
Map<Character, Long> collect = str.chars()
.mapToObj(c -> (char) c)
.collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));
for (Map.Entry<Character, Long> entry : collect.entrySet()) {
Character chars = entry.getKey();
Long count = entry.getValue();
//for odd character length
if (count % 2 != 0) {
oddcount++;
}
}
if (str.length() % 2 == 0) {
//if string length divisble by 2 then odd count should be 0 and return true else false
return oddcount == 0;
} else {
//if odd count is 1 then return true if not then return false here
return oddcount == 1;
}

}

akadeadahot
Автор

code was simple itna mehnat hi kyun krna simply we can do it map mai dalke dekhlo if atmost 1 character is odd then it can be or else it can’t be palindrome, streams se easily ban jyega. I think interviewer was expecting this answer using streams

subhankarpati
Автор

Interviewer asked about multithreading and he responded with microservices 😂

durveshpatil
Автор

What was the answer to that csv question? How can we optimise that when saving the data in db?

raj
Автор

I could see close to 100 videos of real interview experiences in your channel. All those interviews happened in the last month of notice? If yes, then how to manage work while giving these many interviews?

humanplanet
Автор

Hi, can you pls note down all questions asked in description

pratiknagarkar
Автор

Can I interview me for automation role? I am a expericend one in manual testing and planning to transition it to automation

chiragkataria
Автор

How was the interview easy, medium or hard??

bhavanagattu
Автор

umm bro just one thing i wanted to ask as i'm curious how are u uploading such interviews with your face exposed and with the channel name containing your name, so dont u get like any warning from these companies because most people upload with covering their face and stuff!
Thanks for providing such helpful interviews though

omkarshendge
join shbcf.ru