You are given an array of words (strings) and an integer k k k. Your task is to write a function that returns the k k k longest words from the array. If there are fewer than k k k words in the array, return all the words sorted by length in descending order. If there are ties in length, return the words in alphabetical order. Input: An array of strings words[] where each string consists of lowercase and uppercase letters only. An integer k k k (1 ≤ k k k ≤ 100). Output: An array of the k k k longest words, sorted by length (and alphabetically if lengths are equal). Example: plaintextInput: words = ["apple", "banana", "kiwi", "grape", "watermelon"], k = 3 Output: ["watermelon", "banana", "apple"] Input: words = ["cat", "bat", "rat"], k = 5 Output: ["bat", "cat", "rat"] Constraints: The output array should not exceed k k k elements. You may assume that the input will always have at least one word.
Ingeniero Java Senior Interview Questions
5,779 ingeniero java senior interview questions shared by candidates
Circuit breaker implementation in Java: The service A calls service B and service C every time. If one service fails 3-times in 10 minutes ( or 20 seconds in the implementation) the next call will be blocked for 5 minutes (10 seconds in the implementation). There was given a simulation of remote method calls, I needed to implement only the execute() which calls the remote service if possible.
Prepare for every topics that are needed.
Analytical Questions related to patterns like If ‘hi abc’ is ‘jk hgsjk’ The what is ‘abc’
Difference between Spring MVC & SpringBoot
What is the name of the Java pet?
Do you know Microservices ?
How to deploy the app to multiple environment ?
One example: in the same class you have methods with the same names, both with one parameter, first is taking Object and second is taking String. You call the method with null parameter, which method will be called and why? (Would you write a code like this in a real project?)
Java coding snippet Java stream API Spring boot framework
Viewing 401 - 410 interview questions