Below are the list of java technical lead interview questions asked in Akkodis during the firstround.
Java tutorial, Java related real time issues and solution, Java/J2ee interview Questions and Answers
Tuesday, 29 August 2023
Akkodis Company Java Technical Lead Interview Questions (9–12 Years Experience)
Monday, 21 August 2023
LTIMindtree Java technical Lead interview questions
Below are the list of java technical lead interview questions asked in LTIMindtree during the first round.
1) Explain Saga design pattern used in Microservice(Answer)
2) What is orchestrator in Saga pattern?(Answer)
3) Which authentication mechanism used in project and how to implemented(AOuth2 with bearer token)?
3) What is the use of Eureka server?(Answer)
4) What is Functional interface in java 8? do we have default method in Functional interface(Answer)
5) Why introduced deafult method in interface in java 8?(Answer)
6) What is lambda expression ?(Answer)
7) What is difference between collection and stream?(Answer)
8) What is the use of status code in Rest API ?(Answer)
9) What is database/memory lock expeption?
10) What are HTTP idempotent methods?(Answer)
11) What are the key components in spring boot?
12) What is the use of @WebMvcTest . Difference between @WebMvcTest and @SpringBootTest(Answer)
13) Write a program to find second largest word in the sentence.
14) Write a query to find the max salary from the employee table whose name is Reta
Thank you for visiting blog.
Wednesday, 2 August 2023
mobtexting company Java Technical Lead Interview Questions
1)
List<String> list = new ArrayList<String>();
list.add("abc");
List<String> linkedList = new LinkedList<String>();
linkedList.add("abc");
list.get()
linkedList.get();
HashMap<String, String> map = new HashMap<String, String>();
map.put("a", "abc");
TreeMap<String, String> treeMap = new TreeMap<String, String>();
treeMap.put("a", "abc");
map.get("a");
treeMap.get("a");
public class Key{ private String name, private String id; //constructir and Setters and getters } public class Main { public static void main(String[] args) { Map<Key, String> map = new HahsMap<Key, String>(); Key a = new Key("XYZ", "123"); Key b = new Key("XYZ", "234"); map.put(a, "Value"); map.get(b); map.get(a); } }
create table person( id integer, name varchar, primary key(id) ); create car_owner( person_id integer(it's primary key of person table), car_id integer (it's primary key of car table) ); create table car( id integer, car_brand varchar, car_color varchar, );
SELECT p.name, c.brand FROM person p, car_owner co, car c WHERE p.id = co.person_id AND co.car_id = c.id
SELECT count(*), color FROM car group by color HAVING count(*) > 10;
Tuesday, 25 July 2023
Publicis Sapient Java Technical Lead Interview Questions
Below is the list of Java Technical Lead interview questions asked at Publicis Sapient during the second round.
1) Time complexity for HashMap, LinkedHashMap, ArrayList, LinkedList, ConcurrentHashMap.(Answer)
2) Explain ReentrantLock in java (Answer)
3) What is thread pool and explain the executor framework.
4) Explain java 8 features(Answer)
5) What is difference between map and flatMap method in stream(Answer)
6) What is the difference between stream and parallel stream. Explain parallel stream performance.
7) What is association and aggregation in java(Answer)
8) Explain Solid Design Principles(Answer)
9) Difference between SOA and Microservices (Answer)
10) Explain Design pattern used in Microservices mainly Circuit design pattern and Saga pattern(Answer)
11) How to communicate two microservices ? (Answer)
12) Difference between Kafka and RabitMQ(Answer)
13) Explain the scope of spring beans (Answer)
14) What is the use of spring actuator? (Answer)
15) Explain Spring security used in application(Answer)
16) Explain if you used any cahcing algorithm in application
17) Which annotations included in @SpringBootApplication (Answer)
Thank you for reading the blog.
Reference Posts:-