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.4

based on 4.5k Reviews

Filter interviews by

Coforge Fullstack Java Application Developer Interview Questions and Answers

Updated 22 Jun 2024

Coforge Fullstack Java Application Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. How do one microservice communicate with the another microservice?
  • Ans. 

    Microservices can communicate with each other through synchronous HTTP calls, asynchronous messaging, or using a message broker.

    • Synchronous communication: Microservices can communicate directly through HTTP requests, such as REST APIs.

    • Asynchronous communication: Microservices can use messaging protocols like RabbitMQ or Kafka to send and receive messages.

    • Message broker: Microservices can communicate through a message b...

  • Answered by AI
  • Q2. Design patterns in microservices?
  • Ans. 

    Design patterns in microservices help in structuring and organizing code for scalability and maintainability.

    • Use patterns like Service Registry, Circuit Breaker, and Gateway for communication between microservices.

    • Implement patterns like Saga, CQRS, and Event Sourcing for managing data consistency and scalability.

    • Apply patterns like API Gateway, Decomposition, and Database per Service for better separation of concerns

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Sometimes some people are rude, don't take it to heart!!!

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Where are Logic App logs stored?
  • Ans. 

    Logic App logs are stored in Azure Monitor Logs (formerly known as Log Analytics).

    • Logic App logs are stored in Azure Monitor Logs, which is a centralized log storage and analytics service in Azure.

    • Logs can be viewed and analyzed using Azure Monitor Logs queries.

    • Logs can also be integrated with other Azure services for monitoring and alerting purposes.

  • Answered by AI
  • Q2. How to get the 5th top position data in Sql?
  • Ans. 

    Use the OFFSET and FETCH clauses in SQL to get the 5th top position data.

    • Use the ORDER BY clause to sort the data in descending order.

    • Use the OFFSET clause to skip the first 4 rows.

    • Use the FETCH clause to retrieve only the next row after skipping the first 4 rows.

  • Answered by AI
  • Q3. How do you implement custom middleware in .net core?
  • Ans. 

    Custom middleware in .NET Core can be implemented by creating a class that implements the IMiddleware interface and adding it to the application pipeline.

    • Create a class that implements the IMiddleware interface

    • Implement the InvokeAsync method in the middleware class to handle the request processing logic

    • Add the custom middleware to the application pipeline in the Configure method of the Startup class

  • Answered by AI
  • Q4. Explain Authentication & Authorization in asp.net core?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what resources a user can access.

    • Authentication confirms the identity of a user through credentials like username and password.

    • Authorization determines the permissions and access levels of a user based on their authenticated identity.

    • In ASP.NET Core, authentication is handled through middleware like Identity, OAuth, or JWT tokens.

    • Authorizati...

  • Answered by AI
  • Q5. Explain session management in asp.net core?
  • Ans. 

    Session management in ASP.NET Core involves storing and retrieving user-specific data during a user's visit to a website.

    • Session data is stored on the server side by default in ASP.NET Core

    • Session data can be accessed and manipulated using the HttpContext.Session property

    • Session data can be configured to use different storage providers such as in-memory, distributed cache, or SQL Server

    • Session data is typically used to...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NTT Data Information Processing Services Dot Net Fullstack Developer interview:
  • Dot Net
  • Azure
  • Angular
Interview preparation tips for other job seekers - Prepare from begginer to expert level on the JD

Skills evaluated in this interview

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

(3 Questions)

  • Q1. JVM related Questions
  • Q2. Angular features
  • Q3. React Features and how to deploy
  • Ans. 

    React is a JavaScript library for building user interfaces. Deployment can be done using various methods.

    • React features include virtual DOM, component-based architecture, JSX syntax, and state management.

    • Deployment can be done using tools like Heroku, Netlify, AWS, or manually by building and serving static files.

    • Continuous integration and deployment (CI/CD) pipelines can be set up to automate the deployment process.

    • Se...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Wasted my time interviewers are not good in this company mostly they wont select you since your are not from south India. They will ask some question even if you ask all correct they will not select you bcos they already have selected other person and just finishes interview in 15min and so. Advice: Don't waste time.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Just some basic questions.

Round 2 - Coding Test 

Total 6 questions. 4 basic and 2 advanced.

Round 3 - Technical 

(2 Questions)

  • Q1. Write a program for Fibonacci?
  • Ans. 

    Program to generate Fibonacci series using Java

    • Use a loop to generate Fibonacci series

    • Start with 0 and 1 as the first two numbers

    • Add the previous two numbers to get the next number

    • Repeat the process until the desired number of terms

  • Answered by AI
  • Q2. Write a code for inheritance ?
  • Ans. 

    Inheritance in Java allows a class to inherit properties and behaviors from another class.

    • Create a parent class with common properties and methods

    • Create a child class that extends the parent class

    • Child class can access parent class properties and methods

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Aug 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 

(4 Questions)

  • Q1. SQL - a table with emp-id, emp-name, manager-id, Need to find the manger name for each emplyee.
  • Q2. FizzBuzz - if number is divisible by 3 print "fizz", if by 5 print "buzz", if by both "fizzbuzz"
  • Ans. 

    A simple program to print 'fizz' for multiples of 3, 'buzz' for multiples of 5, and 'fizzbuzz' for multiples of both.

    • Iterate through numbers from 1 to n.

    • Use modulo operator to check divisibility by 3 and 5.

    • Print 'fizz', 'buzz', or 'fizzbuzz' accordingly.

  • Answered by AI
  • Q3. Is it necessary for classes implementing an interface to implement interface methods?
  • Ans. 

    Yes, classes implementing an interface must implement interface methods.

    • Classes implementing an interface must provide concrete implementations for all methods declared in the interface.

    • Failure to implement all interface methods will result in a compilation error.

    • Interfaces are used to define a contract that implementing classes must adhere to.

  • Answered by AI
  • Q4. Spring basics - annotations
Round 3 - Technical 

(1 Question)

  • Q1. Spring boot basics
Round 4 - HR 

(1 Question)

  • Q1. Talked about my previous companies and salary. Before they conduct the interview I had told them my expectation, while negotiation they denied for providing that and were offering just 10% hike over my cur...

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go for this company. It is just waste of time.

Skills evaluated in this interview

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

What are Decorators?
Why to use decorators?
What is generator and itrator why to use generator insted of itrator?

Round 2 - Technical 

(1 Question)

  • Q1. How to read a file using inbuilt function in python?
  • Ans. 

    Use the open() function to read a file in Python.

    • Use the open() function with 'r' mode to open a file for reading.

    • Use the read() method to read the contents of the file.

    • Close the file using the close() method after reading.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

Ask 2 sorting techniques

Round 1 - Group Discussion 

1)Driffience between Abstract class &
Interface.
-abstract class
represents property
&
behaviour of an object
whereas
interface
represents
behaviour
of an object.
2)Driffience between equal() vs ==operator.
equal() is
an object class method
whereas
equal() of string class
override
the object class equal().
3)can we use pointer's in Java.
Not explicitly but implicitly we can use pointer's in java.
Dynamic m/m refers with help of pointer's but java does not support the pointer's.
when we r creating an object in java refrence varaible of an object holds the identity that is nothing but an implicit pointer that holds an unique identity of an object.
4)How we can print object ID.
-Object ID printed with help of object class which is a service provider class having 9().
5)what is object class.
-it is a super class of all predefined & userdefined class.
6)Write a prog to get name of main thread in java.
-class A
{
psvm(String args [])
{
s.o.pln(Thread.currentThread().getName());
}
}
7)length vs length()
-length
is
data menmber
of proxy class
whereas
length() is a string class().

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain JVM in ur own language.
  • Ans. 

    JVM is an abstract machine that executes Java bytecode.

    • JVM stands for Java Virtual Machine.

    • It is responsible for interpreting and executing Java bytecode.

    • JVM provides platform independence to Java programs.

    • It has its own memory management system and garbage collector.

    • JVM can be implemented on different operating systems.

    • Examples of JVM languages include Java, Kotlin, and Scala.

  • Answered by AI
  • Q2. Exlplaing Multhreading.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepairing accordingly
for to improve
i) strength,
ii)creativity
&
problem analysis & sloving attitude
with accessing fundamental stratergies of software development.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. It asked basics of Java related to OOPs pillar and DSA questions
  • Q2. DSA linkedlist coding summary etc
Round 2 - HR 

(2 Questions)

  • Q1. How are you now??
  • Q2. Are you good now anymore??

Interview Preparation Tips

Interview preparation tips for other job seekers - study hard and smart
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Bannari Amman Institute of Technology, Sathyamangalam and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Probability, Logical Reasoning, etc.

Round 2 - Coding Test 

4 Basic coding questions
You can choose any language you want to code from.
Questions like palindrome and string reverse were asked.

Round 3 - HR 

(2 Questions)

  • Q1. Asked about the project I had done.
  • Q2. Comfortable with relocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering and need to know Java.

Coforge Interview FAQs

How many rounds are there in Coforge Fullstack Java Application Developer interview?
Coforge interview process usually has 1 rounds. The most common rounds in the Coforge interview process are Technical.
What are the top questions asked in Coforge Fullstack Java Application Developer interview?

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

  1. How do one microservice communicate with the another microservi...read more
  2. design patterns in microservic...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Coforge interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
DXC Technology Interview Questions
3.7
 • 794 Interviews
Mphasis Interview Questions
3.4
 • 780 Interviews
Nagarro Interview Questions
4.0
 • 753 Interviews
View all
Senior Software Engineer
4.8k salaries
unlock blur

₹6.2 L/yr - ₹25 L/yr

Technical Analyst
2.5k salaries
unlock blur

₹9.5 L/yr - ₹38.4 L/yr

Software Engineer
2k salaries
unlock blur

₹2 L/yr - ₹9.5 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹5 L/yr - ₹20.5 L/yr

Technology Specialist
1.2k salaries
unlock blur

₹11.9 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.8
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview