Open In App

Accenture Interview Experience for Application Developer

Last Updated : 07 Aug, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Interview Experience: Accenture Application Developer Interview

Date: 4th August 2023

Interviewer: Sree

Position: Application Developer

I recently had the opportunity to attend an interview for the position of Application Developer at Accenture. The interview was conducted by Sree and took place on 4th August 2023. Here’s a summary of the questions asked and my responses:

1. Tell me about yourself.

Response: Described my projects and about myself

2. Have you worked as product support or in a development team?

Response: Described my roles and responsibilities

3. Can you tell me the architecture of Spring Boot?

Response: https://www.interviewbit.com/blog/spring-boot-architecture/

4. Describe Spring Boot annotations and name some of them.

Response: I explained basic annotations like @SpringBootApplication, @Component, @Service, @Data, @Id, @GeneratedValue, @Entity and all basic annotations which is used to up the application.

5. What are request parameters and differentiate request param and query param?

Response: https://medium.com/1developer/spring-requestparam-vs-queryparam-vs-pathvariable-vs-pathparam-7c5655e541ad

6. Coding Question: Write a Java code and sum of odd and even numbers in groups.

Response: I already check this question on Ambition Box before interview.

Java




import java.util.Scanner;
  
public class SumEvenAndOddDigits {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        System.out.print("Enter an integer N: ");
        int N = scanner.nextInt();
  
        int evenSum = 0;
        int oddSum = 0;
  
        while (N != 0) {
            int digit = N % 10;
            if (digit % 2 == 0) {
                evenSum += digit;
            } else {
                oddSum += digit;
            }
            N /= 10;
        }
  
        System.out.println("Sum of even digits: " + evenSum);
        System.out.println("Sum of odd digits: " + oddSum);
    }
}


7. Any questions for me?

Response: I responded with some general answers

Overall, the interview experience was challenging but rewarding. I felt comfortable discussing my experiences and technical knowledge. I am looking forward to hearing back from Accenture soon and hope for a positive outcome.

NOTE: It is mandatory for companies like ACCENTURE, TCS, WIPRO, CAPGEMINI to read interview experience once because questions are mostly same.



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads