Upload Button Icon Add office photos

Filter interviews by

Accenture Mobile Application Developer Interview Questions, Process, and Tips

Updated 17 Dec 2024

Top Accenture Mobile Application Developer Interview Questions and Answers

Accenture Mobile Application Developer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round contains basic aptitude questions

Round 2 - Coding Test 

In coding round string operation are important

Round 3 - Technical 

(1 Question)

  • Q1. It is all about your skills mentioned in the resume
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Asked questions on Chat GPT, do I read tech based publication and how often? very few questions on my project
  • Q2. The interviewer seemed uninterested from the start, he disconnected twice from the meet
  • Q3. Why should i give this job to you when chatgpt can do the same job?

Mobile Application Developer Interview Questions Asked at Other Companies

Q1. How to handle the huge number of concurrent HTTP requests of orde ... read more
Q2. What can we do to reduce the size of an application developed usi ... read more
Q3. What are the different types of Widgets in Flutter?
asked in Accenture
Q4. why do i use loop and how many types of loops in php?
asked in Zoho
Q5. Explain the concept of multithreading and how is it differ from m ... read more

Interview Questionnaire 

4 Questions

  • Q1. What is the class?
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • A class defines the properties and behaviors that an object will have.

    • It serves as a template for creating multiple instances of objects.

    • Objects are instances of a class, and they can have their own unique values for the properties defined in the class.

    • Methods defined in a class can be used to perform actions or manipulate the object's data.

    • In m...

  • Answered by AI
  • Q2. What is inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reuse and promotes modularity.

    • The class that is being inherited from is called the superclass or base class.

    • The class that inherits from the superclass is called the subclass or derived class.

    • The subclass can access the public and protected members of the superclass.

    • Inhe...

  • Answered by AI
  • Q3. What is encapculation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information.

    • Encapsulation is a fundamental concept in object-oriented programming.

    • It helps in achieving data abstraction and information hiding.

    • It allows for better control over the data and prevents unauthorized access.

    • Examples include access modifiers like public, private, and protected in Java.

    • Encapsulation also helps in reduci

  • Answered by AI
  • Q4. Why do i use loop and how many types of loops in php?
  • Ans. 

    Loops are used to execute a block of code repeatedly. PHP has four types of loops: for, while, do-while, and foreach.

    • Loops help in automating repetitive tasks.

    • For loop is used when the number of iterations is known.

    • While loop is used when the number of iterations is unknown.

    • Do-while loop is similar to while loop, but it executes the code block at least once.

    • Foreach loop is used to iterate over arrays or objects.

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: written test in html and css with 100 question and i marked 95 question with accurate answer
Tips: i solved each question with hard concentration

Round: Technical Interview
Experience: i answered all the question with explanation on simpe white paper while explain all the question interviewer was looking happy..
because way of my explain was simple and short
Tips: keep your doubts clear

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

There is aptitude test

Round 2 - Aptitude Test 

Yeah some times there is taff questions too

Round 3 - Technical 

(2 Questions)

  • Q1. I can't share quotation
  • Q2. No I can't share here

Interview Preparation Tips

Interview preparation tips for other job seekers - Please contact all companies and develop ur skill side by side

Interview Preparation Tips

Skills: Problem Solving Abilties
College Name: Gujarat university
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Briefly explain about your self and work experience
  • Ans. 

    I am a Senior Android Developer with 5+ years of experience in developing mobile applications for various industries.

    • Developed and maintained multiple Android applications from concept to deployment

    • Proficient in Java, Kotlin, and Android SDK

    • Experience with RESTful APIs, third-party libraries, and version control systems like Git

    • Strong problem-solving skills and ability to work in a team environment

    • Familiar with Agile d

  • Answered by AI
  • Q2. What is Higher order function
  • Ans. 

    Higher order function is a function that can take other functions as parameters or return functions as results.

    • Higher order functions can be passed as arguments to other functions.

    • Higher order functions can return functions as results.

    • Examples include map, filter, and reduce functions in functional programming.

  • Answered by AI
  • Q3. What is inline keyword
  • Ans. 

    The inline keyword is used in Kotlin to suggest that a function should be inlined at the call site.

    • Used to eliminate the overhead of function calls by copying the function code directly at the call site

    • Helps in improving performance by reducing the function call overhead

    • Should be used for small functions or lambdas to avoid unnecessary function call overhead

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Explain the Agail methodology
  • Ans. 

    Agile methodology is a project management approach that emphasizes flexibility, collaboration, and iterative development.

    • Agile methodology focuses on delivering working software in short, iterative cycles called sprints.

    • It values customer collaboration and responding to change over following a strict plan.

    • Key principles include individuals and interactions over processes and tools, working software over comprehensive d...

  • Answered by AI
  • Q2. How do you handle the Team during your team lead experience

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. Data class in kotlin
  • Ans. 

    Data class in Kotlin is used to represent a simple data container with automatically generated methods like equals(), hashCode(), toString(), and copy().

    • Data classes are declared using the 'data' keyword before the class keyword.

    • Properties of data classes are automatically generated component functions for destructuring declarations.

    • Data classes cannot be abstract, open, sealed, or inner.

    • Example: data class User(val na

  • Answered by AI
  • Q2. Scope functions
  • Q3. Explain viewmodel and mvvm
  • Ans. 

    ViewModel is a class that stores and manages UI-related data in a lifecycle-conscious way. MVVM is an architectural pattern that separates the UI from the business logic.

    • ViewModel is part of the Android Architecture Components and is used to store and manage UI-related data in a lifecycle-conscious way.

    • ViewModel survives configuration changes such as screen rotations and retains its data.

    • MVVM stands for Model-View-View...

  • Answered by AI
  • Q4. Higher order functions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. All technical Jetpack concept no DSA questions and asked all theoretical questions
  • Q2. What are coroutine, how to secure ur app data, network call in android , ssl pinning, notification's implementation through FCM, android basic questions
  • Ans. 

    Coroutines are a way to perform asynchronous operations in Android, securing app data involves encryption, SSL pinning enhances security, FCM for notifications.

    • Coroutines are used for managing asynchronous operations in Android, allowing for efficient and non-blocking code execution.

    • Securing app data involves using encryption techniques such as AES to protect sensitive information from unauthorized access.

    • SSL pinning i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn this topics and also DSA questions get asked in coding round and be consistent

Skills evaluated in this interview

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

Easy aptitude english and logical reasoning.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me About yourself
  • Q2. Swift advantages and disadvantages
  • Ans. 

    Swift is a powerful and modern programming language for iOS development, but it has its own set of advantages and disadvantages.

    • Advantages: faster performance, safer code with optionals, easier to read and write code, interoperability with Objective-C

    • Disadvantages: steep learning curve for beginners, limited community support compared to other languages like Java or Python

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation and current salary

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Lifecycle of the Activity
  • Ans. 

    The lifecycle of an Activity in Android refers to the series of states an Activity goes through from creation to destruction.

    • An Activity goes through states like onCreate, onStart, onResume, onPause, onStop, onDestroy, etc.

    • Each state has specific methods that can be overridden to perform actions at that state.

    • For example, onCreate is called when the Activity is first created, onResume is called when the Activity is bro

  • Answered by AI
  • Q2. Push notification
  • Q3. About the project mentioned in the resume

Accenture Interview FAQs

How many rounds are there in Accenture Mobile Application Developer interview?
Accenture interview process usually has 2 rounds. The most common rounds in the Accenture interview process are HR, Aptitude Test and Coding Test.
What are the top questions asked in Accenture Mobile Application Developer interview?

Some of the top questions asked at the Accenture Mobile Application Developer interview -

  1. why do i use loop and how many types of loops in p...read more
  2. what is encapculati...read more
  3. what is the cla...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Accenture interviews
Company Website
WalkIn
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Accenture Mobile Application Developer Salary
based on 11 salaries
₹3.1 L/yr - ₹13 L/yr
7% more than the average Mobile Application Developer Salary in India
View more details

Accenture Mobile Application Developer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.8

Skill development

5.0

Work-Life balance

4.8

Salary & Benefits

5.0

Job Security

4.8

Company culture

4.8

Promotions/Appraisal

5.0

Work Satisfaction

Explore 2 Reviews and Ratings
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
26.2k salaries
unlock blur

₹6.8 L/yr - ₹20.2 L/yr

Team Lead
24.1k salaries
unlock blur

₹7 L/yr - ₹25.3 L/yr

Senior Software Engineer
18.4k salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Software Engineer
17.6k salaries
unlock blur

₹3.6 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.8
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