Тёмный

Java Interview| 9+ years experience| Real time Java Microservices Interview. 

Stream2Learn
Подписаться 3,8 тыс.
Просмотров 35 тыс.
50% 1

This is a recording of an actual interview discussion that I was part of.
This video talks about Java, Microservices, and Spring boot interview questions and Spring boot basic features through these interview questions.
Top 10 Tricky core java Interview questions top java interview questions, top java interview questions and answers, top interview questions and answers, top java interview questions for freshers, top 10 java interview questions, tricky java interview questions, tricky java interview questions for experienced, tricky java questions, java tricky interview questions, top 50 java interview questions, top 50 core java interview questions, java interview questions by durga sir, java interview questions for experienced, java interview questions for freshers, java interview questions and answers, java interview questions and answers edureka
#JavaInterviewQuestionsandAnswers​ #JavaInterviewQuestions​ #JavaInterview​ #CoreJavaInterviewQuestions​ #JavaInterviewQuestionsandAnswersForExperienced​ #JavaTutorial​ #JavaProgramming​ #JavaTutorialForBeginners​

Опубликовано:

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 32   
@deepak2all
@deepak2all 2 года назад
1. Why we use lambda expression? 2. Where do we use method reference 3. Filter a list of elements - how do we do? 4. What are the major collections used 5. Stream Vs Parallel stream 6. Does streaming has any correlation with the cores 7. If we are reading from a list and if we are writing from the list to another list, can we use parallel stream in that case 8. Runnable Vs Callable 9. Futures 10. Different ways to create multiple threads 11. After all tasks are finished in executor service, you need to execute something in the main thread. How will you do it? 12. Need for micro-services, diff between monolithic and micro-services 13. Design of MS in the project 14. Eureka service and it's usage 15. API gateway usage 16. Handling security stuffs in MS 17. How do you communicate between the services in your application - Feign client 18. How to enable Eureka server and register the clients 19. Annotations used in spring boot 20. Caching annotations 21. What's transient (@Transient) 22. Different bean scope 23. Singleton pattern 24. Prototype pattern 25. Basic Kafka setup 26. What's the basic adv of Kafka over other messaging queues 27. Consumer groups in Kafka 28. If 2 consumers are part of a consumer group, both the consumers will get the same message or only either of them will get the same message 29. What happens if 2 consumers belong to different consumer groups 30. Concept of sharding 31. How do we shard the data? What's shard key? 32. SQL Vs no SQL database 33. You have an array of 0's and 1's. Segregate them such that 0's are at left and 1's at right. 34. How 33 can be done in min time. Pick an algorithm.
@stream2learn
@stream2learn 2 года назад
Thanks for the detailing mate.
@deepak2all
@deepak2all 2 года назад
@@stream2learn Thanks for your feedback and initiatives. You can also place these questions in the video description, so that everyone would get benefited. Not sure if all the viewers would go over this comment
@stream2learn
@stream2learn 2 года назад
@@deepak2all Done.
@rexsmithcapgemini9049
@rexsmithcapgemini9049 6 месяцев назад
For 000 1111 int[] arr =✓{1,0,0,1,0,0,1,1} Strung xeros = Stream.of(arr).flatmaptoint(Arrays::stream). filter (a->a ==0) .maptoobj(string::valueof).collect(collectors.joining("")) for 0 and same for 1. Join both in Buffer
@sravone2021
@sravone2021 3 месяца назад
Super cool interview
@venkateshnlr5440
@venkateshnlr5440 2 года назад
Nice
@RealSlimShady-um6gf
@RealSlimShady-um6gf 10 месяцев назад
What was he answering?
@swarupcodes
@swarupcodes 2 года назад
It's really true that number of experience is inversely proportional to the coding efficiency.
@anantdixit1286
@anantdixit1286 2 года назад
Thanks for sharing live interview.. It was worth watching.. I am working on similar tech stack close to 6 yrs exp in java backend and looking for new opportunities.. let me know if still there are any openings.. awaiting for more similar videos..
@stream2learn
@stream2learn 2 года назад
Sure Anand.
@aman3318
@aman3318 11 месяцев назад
For the algo question answer , i don't remember if the panelists asked NOT TO USE any inbuilt methods. If they said so then pardon i am sorry. In that Case ONLY ONE LINE CODE WILL DO:- int ar[]={0,0,1,1,0,1,1,0,0,0,0,1,0,0}; Arrays.sort(ar); for(int i=0;i
@adityashankar6884
@adityashankar6884 2 года назад
Sir thanks for sharing the interview experience it will help us a lot
@gsaravanan41
@gsaravanan41 2 года назад
00:58 - 01:42 - 02:17 - 1. Why we use lambda expression? 2. Where do we use method reference 3. Filter a list of elements - how do we do? 03:45
@onestopreferralOfficial-lv7sp
@onestopreferralOfficial-lv7sp 2 месяца назад
Rejected
@vivekpanday
@vivekpanday 2 года назад
Ashwin was already impressed and decided him to select 👍🎈
@saalikkhan7768
@saalikkhan7768 Год назад
For those looking for answers of the Algo question. Its simple in-place algo (You can say its a simple swapping the numbers algo). int[] intArr = {0,1,0,1,0,0,1,0,1,0}; int j = 0; for(int i =0; i 0){ int temp = intArr[j]; intArr[j] = intArr[i]; intArr[i] = temp; j++; } }
@Pawan76457
@Pawan76457 Год назад
Did u even see the output or just suggesting like this????
@Pawan76457
@Pawan76457 Год назад
It would be like below: For(int i=0;iarr[i+1]){ int temp=arr[i]; arr[i]=are[i+1]; arr[i+1]=temp; } }
@syedr16
@syedr16 Год назад
@saalikkhan7786 this actually sorting 0s to the right rather the below snippet is working properly int j = 0; for(int i =0; i
@Haishang0575
@Haishang0575 9 месяцев назад
sorting will solve this. @@Pawan76457
@surya5064
@surya5064 2 года назад
Hi sir, if there are any openings. please let me know
@jaYaDev-h6u
@jaYaDev-h6u 8 месяцев назад
Coding knowledge is very poor
@harshapasumarthi9876
@harshapasumarthi9876 2 года назад
Bro does any coupons working to get databricks course? Please let me know
@stream2learn
@stream2learn 2 года назад
Sure.
@JangBahadur3028
@JangBahadur3028 2 года назад
I would reject this candidate as per his this interview.
@rohitadnaik8256
@rohitadnaik8256 2 года назад
Is he got selected?
@stream2learn
@stream2learn 2 года назад
What do you think, after seeing the discussion?
@surya5064
@surya5064 2 года назад
@@stream2learn I think he got selected.
@moredeno
@moredeno 2 года назад
he did not
@swarupcodes
@swarupcodes 2 года назад
He did not. I've had a friend who talked much about technologies but he couldn't code properly. I don't know how to handle with people like these. Like we need to build domain logic then infra logic.
Далее
Witch changes monster hair color 👻🤣 #shorts
00:51
Morgan Stanley Round-2 | 4-7 years of Experience.
50:19
Witch changes monster hair color 👻🤣 #shorts
00:51