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

Filter interviews by

Coforge Java Developer Interview Questions and Answers

Updated 20 Feb 2025

Coforge Java Developer Interview Experiences

5 interviews found

Java Developer Interview Questions & Answers

user image Animesh Singh 4978

posted on 20 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Kth stair problem
  • Q2. Asteroid Collision
Round 2 - Technical 

(2 Questions)

  • Q1. Dbms questions On normalization , concurrency control and SQL queries
  • Q2. Project related questions build and uploaded on my GitHub
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Oct 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Mostly questions were on core java and multitasking Difference between wait() and sleep()
  • Q2. Synchronization, implementation of HashMap
  • Q3. Array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Core java and Multithreading

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in LTIMindtree
Q3. Longest Harmonious Subsequence Problem Statement Determine the lo ... read more
asked in Infosys
Q4. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q5. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Given a String s = "aaaaa", find the count of substring matching given pattern "aa". Output : 4
  • Ans. 

    Count the occurrences of a given pattern in a string.

    • Iterate through the string and check for the pattern at each position

    • Increment a counter whenever the pattern is found

    • Return the final count

  • Answered by AI

Java Developer Interview Questions & Answers

user image Ranjith MG

posted on 20 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Scaler and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Balanced Bracket problem. {}[]()

Round 3 - Technical 

(1 Question)

  • Q1. Project Experience and Most Challenging work problem you faced?

Coforge interview questions for designations

 Senior Java Developer

 (7)

 Fullstack Java Application Developer

 (1)

 Java Back End Developer

 (1)

 Java Technical Lead

 (1)

 Software Developer

 (15)

 Salesforce Developer

 (3)

 UI Developer

 (3)

 Application Developer

 (2)

Round 1 - Personal Interview 

(1 Question)

  • Q1. What is OOPS concepts..??
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming concepts, which include principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class B extends class A.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the

Interview questions from similar companies

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
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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain how hashmap internally works
  • Ans. 

    HashMap internally uses an array of linked lists to store key-value pairs.

    • HashMap uses hashing to determine the index of the key in the array.

    • If multiple keys hash to the same index, a linked list is used to store them.

    • When retrieving a value, the key is hashed to find the index and then the linked list is searched for the key.

  • Answered by AI
  • Q2. Difference between vector and Arraylist
  • Ans. 

    Vector is synchronized and slower, ArrayList is unsynchronized and faster.

    • Vector is synchronized, ArrayList is not.

    • Vector is slower due to synchronization, ArrayList is faster.

    • Vector is legacy class, ArrayList is part of Java Collections framework.

    • Vector doubles its size when full, ArrayList increases by 50%.

  • 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 Developer interview?
Coforge interview process usually has 1-2 rounds. The most common rounds in the Coforge interview process are Technical, Resume Shortlist and Personal Interview1.
How to prepare for Coforge Java Developer 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 Spring Boot, Microservices, Java, J2Ee and Hibernate.
What are the top questions asked in Coforge Java Developer interview?

Some of the top questions asked at the Coforge Java Developer interview -

  1. Given a String s = "aaaaa", find the count of substring matching given pattern ...read more
  2. What is OOPS concepts....read more
  3. Mostly questions were on core java and multitasking Difference between wait() a...read more

Tell us how to improve this page.

Coforge Java Developer Interview Process

based on 4 interviews

Interview experience

4
  
Good
View more
Coforge Java Developer Salary
based on 82 salaries
₹2 L/yr - ₹9.7 L/yr
At par with the average Java Developer Salary in India
View more details

Coforge Java Developer Reviews and Ratings

based on 6 reviews

2.6/5

Rating in categories

1.6

Skill development

3.1

Work-life balance

3.0

Salary

1.4

Job security

3.7

Company culture

1.6

Promotions

2.1

Work satisfaction

Explore 6 Reviews and Ratings
Java Developer

Bangalore / Bengaluru

5-10 Yrs

₹ 15-30 LPA

Java Developer

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

Java Developer

Bangalore / Bengaluru,

Greater Noida

4-9 Yrs

₹ 16-27.5 LPA

Explore more jobs
Senior Software Engineer
4.8k salaries
unlock blur

₹6.2 L/yr - ₹26 L/yr

Technical Analyst
2.6k salaries
unlock blur

₹10.6 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.5 L/yr

Technology Specialist
1.1k salaries
unlock blur

₹12 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.8
Compare

Infosys

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