Array questions and loops in java
Engineer Developer Interview Questions
3,868 engineer developer interview questions shared by candidates
Reverse a number in java
Reverse Linked List Seive of erathoneses
1. split array int smaller arrays based on given size. int[] original = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; int splitSize = 3; /* expected Output [0, 1, 2] [3, 4, 5] [6, 7, 8] [9] */ 2.Flatten object array. Object[] array = { 1, 2, new Object[]{ 3, 4, new Object[]{ 5 }, 6, 7 }, 8, 9, 10 };
What are some of the benefits and problems associated with Test-Driven Development?
What is the difference between POST and PUT REST methods?
What does @SpringBootApplication annotation do?
Given a RESTful endpoint which makes calls to 3 separate services, how would you go about investigating and resolving performance issues?
What are Message Queues, and why would you use them?
Explain oops concepts in detail
Viewing 1781 - 1790 interview questions