They mostly asked about git and shortcuts
Junior Java Developer Interviews
Junior Java Developer Interview Questions
"Junior developers are often responsible for writing the more monotonous and simple code required by senior members of the development team. Because of this, interviews will be designed to test your knowledge of the fundamentals of Java so be prepared to answer technical questions that you likely came across in college. Data structures and algorithms will be heavily emphasised. A bachelor's degree or equivalent work experience is required. "
3,799 junior java developer interview questions shared by candidates
01. You are given a function, int Distance(int Ax, int Ay, int Bx, int By); The function accepts the coordinates of truck A(Ax, Ay) and the coordinates of truck B(Bx, By), as input. The office is at location (0, 0). Implement the function to determine which truck is closer to the office by comparing the square of their distances. Return the square of the distance of the truck which is closer to the office. Square of distance between two points having coordinates (x, y) and (0, 0): (Distance) [x²+ y²] = 82645-3997956 02. 03. Note: D •No need to compute the square root of the distances of trucks A and B from the office. • If both trucks are at equal distance, return square of distance of either truck. Example: Input: 12 5 12 9 Output: 169 Explanation: (Distance of truck A)² = (Ax² + Ay²] = [12²+52) = (144 +25) = 169 (Distance of truck B)2= [Bx²+ By2] = [122+92] = (144 +81) = 225 Since, (169225), hence the output is 169. Sample input 6 8 3 4 sample output 25
Basic oops concepts from java
What is difference between abstarction and interface
What is the most complicated usage of Java that you know?
Implement a thread-safe Singleton.
What is maven? NoSql Database
1. train questions 2. time distance 3. blood relation 4. profit loss
What is rest api? diff btn @controller & @rest controller what is @autoconfigure @controller java 8 features stream api
1. What is the importance of oop's? 2. What is the use of protected? 3. Difference between ArrayList and LinkedList? 4. For a given singly LinkedList with CRUD operations describe the approach for unit tests? 5. Difference between git merge and git rebase?
Viewing 351 - 360 interview questions