Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Coforge Team. If you also belong to the team, you can get access from here

Coforge Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 4.6k Reviews

Filter interviews by

Coforge Java Technical Lead Interview Questions and Answers

Updated 4 Mar 2022

Coforge Java Technical Lead Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are java 8 new features
  • Ans. 

    Java 8 introduced lambda expressions, streams, default methods, and more.

    • Lambda expressions for functional programming

    • Streams for efficient processing of large data sets

    • Default methods to add new functionality to existing interfaces

    • Date and Time API for improved handling of date and time

    • Optional class to avoid null pointer exceptions

    • Nashorn JavaScript engine for improved performance

    • Parallel array sorting for faster sor

  • Answered by AI
  • Q2. What is the difference between stream and parallel stream
  • Ans. 

    Stream is sequential while parallel stream is concurrent

    • Stream is a sequence of elements that can be processed sequentially

    • Parallel stream is a sequence of elements that can be processed concurrently

    • Parallel stream can improve performance for large datasets

    • Parallel stream uses multiple threads to process elements in parallel

    • Stream is suitable for small datasets or when order of processing is important

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be perfect in java8 concepts , spring framework and core concepts of java

Skills evaluated in this interview

Java Technical Lead Jobs at Coforge

View all

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between PUT and POST
  • Ans. 

    PUT is used to update or replace an existing resource, while POST is used to create a new resource.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

    • POST is not idempotent, meaning multiple identical requests may have different effects.

    • PUT is used when the client knows the URI of the resource it wants to update.

    • POST is used when the client does not know the URI of the

  • Answered by AI
  • Q2. What are the idempotent methods in REST API call
  • Ans. 

    Idempotent methods in REST API calls are operations that can be repeated multiple times without changing the result beyond the initial application.

    • GET method is idempotent as it retrieves data and does not change the state of the server

    • PUT and DELETE methods are also idempotent as they perform the same operation regardless of how many times they are called

    • POST method is not idempotent as it creates a new resource each

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy process, but they do not honor their offer letter. So, you may be left with no jobs/joining even after your offer letter. In my case, they did not honor their offer letter after saying that they do not have project with thier client

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Core Java questions and multithreading basics like executor service
  • Q2. Spring boot error handling, simple questions on distributed systems
  • Q3. Coding question. Requested to do in O(n ) time complexity as oppsed to O(n2) suggested by me.
Round 2 - Technical 

(2 Questions)

  • Q1. Given an array find all the numbers whose sum is 11 using streams only
  • Q2. Spring boot basics, hibernate queries, what is native query
Round 3 - Technical 

(2 Questions)

  • Q1. Design patterns in Java, write a singleton class
  • Q2. Spring IOC and AOP

Interview Preparation Tips

Interview preparation tips for other job seekers - The first 2 rounds were good and interviewer were also good. But there were 2 people who were taking the interview with the agenda to reject me. Didn't give me time to think on anything. Pointed error in my code which afterwards checked was perfectly fine. Haven't heard back on the feedback afte the third interview.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain architecture of your project
  • Q2. Some questions on Java, Spring Boot and sql
Round 2 - Technical 

(2 Questions)

  • Q1. Project flow and some behavioural questions
  • Q2. Project contribution of yours
  • Ans. 

    Developed a web application for tracking employee attendance and performance

    • Implemented user authentication and authorization using Spring Security

    • Utilized Hibernate for database interaction and data persistence

    • Designed and developed RESTful APIs for frontend integration

    • Used AngularJS for frontend development to create interactive user interfaces

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic formalities before offer release

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand your project properly and have your basic of programming very clear
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are intermediate and terminal operations
  • Q2. Predefined functional interface
  • Q3. Ways to create Thread

Interview Preparation Tips

Interview preparation tips for other job seekers - It was moderate level of interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

A standard online test conducted through one of the testing platforms.

Round 2 - Technical 

(4 Questions)

  • Q1. Java 8 features
  • Q2. Rest API
  • Q3. Java 8 coding problem
  • Q4. Collections
Round 3 - Technical 

(1 Question)

  • Q1. It was based on my previous project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Chvvvv vvbbbbb isush shjshs jdudjdj
  • Q2. Vvvhjjjc hhhjVv hsudjsj hsudjsh hdhdh

Interview Preparation Tips

Interview preparation tips for other job seekers - Vvbh
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Diff between abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any of these.

    • A class can extend only one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define a common behavior among subclasses, while interfaces are used to define a contract for classes...

  • Answered by AI
  • Q2. Explain about handler methods
  • Ans. 

    Handler methods in Java are methods that are responsible for handling incoming requests and generating responses.

    • Handler methods are typically defined in classes annotated with @Controller or @RestController.

    • These methods are mapped to specific URLs using @RequestMapping or other mapping annotations.

    • Handler methods can have parameters such as HttpServletRequest, HttpServletResponse, or model attributes.

    • The return value...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions and some questions from PostgreSQL.

Round 2 - Technical 

(5 Questions)

  • Q1. Java fundamental questions?
  • Q2. Collection Framework.
  • Q3. 2-3 easy to medium Coding Questions.
  • Q4. Questions from Object oriented programming in Java?
  • Q5. Implementation of HashMap , LinkedList, HashSet, Heap?
  • Ans. 

    HashMap, LinkedList, HashSet, and Heap are data structures commonly used in Java for storing and organizing data.

    • HashMap: key-value pairs, uses hashing to store and retrieve elements efficiently (e.g. HashMap)

    • LinkedList: linear data structure, elements are stored in nodes with pointers to the next node (e.g. LinkedList)

    • HashSet: collection of unique elements, uses hashing to ensure uniqueness (e.g. Hash...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GlobalLogic Java Developer interview:
  • Java
  • oops
  • Collection Framework
Interview preparation tips for other job seekers - Interviewers were very friendly and helpful.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Comparable vs Comparator
  • Ans. 

    Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java.

    • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.

    • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class that compares objects based on specific criteria.

    • Example: Sorting a list of ...

  • Answered by AI
  • Q2. Difference between List and Set
  • Ans. 

    List allows duplicate elements and maintains insertion order, while Set does not allow duplicates and does not maintain order.

    • List can contain duplicate elements, Set cannot

    • List maintains insertion order, Set does not guarantee order

    • List is implemented by classes like ArrayList, LinkedList, Set is implemented by classes like HashSet, TreeSet

    • Example: List list = new ArrayList<>(); Set set = new HashSet<>();

Answered by AI

Skills evaluated in this interview

Coforge Interview FAQs

How many rounds are there in Coforge Java Technical Lead interview?
Coforge interview process usually has 1 rounds. The most common rounds in the Coforge interview process are Technical.
How to prepare for Coforge Java Technical Lead interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Coforge. The most common topics and skills that interviewers at Coforge expect are Java, Microservices, AWS, Activemq and Ajax.
What are the top questions asked in Coforge Java Technical Lead interview?

Some of the top questions asked at the Coforge Java Technical Lead interview -

  1. what is the difference between stream and parallel str...read more
  2. what are java 8 new featu...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 804 Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
Nagarro Interview Questions
4.0
 • 775 Interviews
View all
Java Technical Lead (Java + AWS/Angular)

Greater Noida

8-13 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
4.9k salaries
unlock blur

₹6.3 L/yr - ₹26 L/yr

Technical Analyst
2.6k salaries
unlock blur

₹9.4 L/yr - ₹38.4 L/yr

Software Engineer
2k salaries
unlock blur

₹2.2 L/yr - ₹9.5 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹4.7 L/yr - ₹19.3 L/yr

Technology Specialist
1.2k salaries
unlock blur

₹11.8 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Infosys

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview