Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Android Developer Interview Questions, Process, and Tips

Updated 23 Dec 2024

Top Accenture Android Developer Interview Questions and Answers

  • Q1. Last project and what technology and architecture used in the app?
  • Q2. what is broadcast and it's type of broadcast and what is the use of broadcast?
  • Q3. what is the marker interface and when and where to use interface?
View all 12 questions

Accenture Android Developer Interview Experiences

8 interviews found

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

(2 Questions)

  • Q1. What is Android Manifest
  • Q2. What are services
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Instagram and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Profit and loss syllogism

Round 2 - Coding Test 

2 questions string questions and array questions easy

Round 3 - HR 

(2 Questions)

  • Q1. Ask to give self intro
  • Q2. Brief Question about certificate

Android Developer Interview Questions Asked at Other Companies

asked in Paytm
Q1. BST Iterator Problem Statement You are tasked with creating a cla ... read more
asked in Hike
Q2. Design an photo viewing app which will show images from the disk ... read more
asked in Paytm
Q3. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more
asked in Rupeek
Q4. Majority Element Problem Statement Given an array/list 'ARR' cons ... read more
asked in Paytm
Q5. Colorful Knapsack Problem You are given a set of 'N' stones, each ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Salary is below expectation
Round 2 - Technical 

(1 Question)

  • Q1. What is your overall experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leetcode easy question

Interview Preparation Tips

Interview preparation tips for other job seekers - leetcode and basic question

Accenture interview questions for designations

 Android App Developer

 (2)

 Senior Android Developer

 (1)

 Junior Android Developer

 (1)

 Android

 (1)

 Android Mobile Application Developer

 (3)

 Developer

 (9)

 Application Developer

 (258)

 Software Developer

 (240)

Android Developer Interview Questions & Answers

user image Pallavi Mule

posted on 21 Apr 2024

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

(1 Question)

  • Q1. What is activity ? And it's lifecycle
  • Ans. 

    An activity is a single, focused thing that the user can do. It represents a single screen with a user interface.

    • Activities are the building blocks of Android applications.

    • They are responsible for creating a window in which the app draws its user interface.

    • Activities have a lifecycle that defines how they are created, started, paused, resumed, stopped, and destroyed.

    • Examples of activities include login screen, settings

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Accenture Interview Questions

I applied via Referral and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Components of Android?
  • Ans. 

    Android has four main components: Activities, Services, Broadcast Receivers, and Content Providers.

    • Activities: UI components that represent a single screen with a user interface.

    • Services: Background components that perform long-running operations.

    • Broadcast Receivers: Respond to system-wide broadcast announcements.

    • Content Providers: Manage a shared set of app data that can be accessed by other apps.

  • Answered by AI
  • Q2. Mvvm design pattern?
  • Ans. 

    MVVM is a design pattern that separates UI code from business logic using a ViewModel.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View represents the UI

    • ViewModel acts as a mediator between the Model and View

    • ViewModel exposes data and commands to the View

    • MVVM helps in unit testing and maintainability

    • Example: Android Architecture Components provide support for MVVM

  • Answered by AI
  • Q3. Storage types in android?
  • Ans. 

    Android supports various types of storage options for storing data.

    • Internal Storage

    • External Storage

    • Shared Preferences

    • SQLite Databases

    • Network Connection

  • Answered by AI
  • Q4. Fragments and why is it used?
  • Ans. 

    Fragments are reusable UI components in Android used to create flexible and dynamic user interfaces.

    • Fragments allow for modularization of UI components

    • They can be reused across multiple activities

    • They can be added or removed dynamically at runtime

    • They help in creating responsive UIs for different screen sizes

    • Example: A news app can use a fragment to display a list of articles and another fragment to display the details

  • Answered by AI
  • Q5. Layout types?
  • Q6. Why do we prefer constraint layout?
  • Ans. 

    Constraint layout is preferred for its flexibility and efficiency.

    • Allows for complex layouts with minimal nesting

    • Supports responsive design and animations

    • Reduces the need for nested layouts

    • Improves performance by reducing layout hierarchy

    • Easier to maintain and update layouts

    • Compatible with Android Studio's Layout Editor

  • Answered by AI
  • Q7. Service in android?
  • Ans. 

    Service is a component in Android that runs in the background to perform long-running operations.

    • Services can be started or bound to an activity

    • They can run indefinitely or until they complete their task

    • They can communicate with other components using intents or callbacks

  • Answered by AI
  • Q8. Retrofit library for web services?
  • Ans. 

    Retrofit is a type-safe HTTP client for Android and Java.

    • Retrofit simplifies the process of sending network requests and handling responses.

    • It uses annotations to define API endpoints and request parameters.

    • Retrofit also supports various data formats such as JSON, XML, and Protocol Buffers.

    • It can be used with other libraries like OkHttp for better performance.

    • Retrofit is widely used in Android development for consuming

  • Answered by AI
  • Q9. Last project and what technology and architecture used in the app?
  • Ans. 

    Developed a social media app using Kotlin and MVVM architecture.

    • Used Kotlin for coding the app

    • Implemented MVVM architecture for better code organization

    • Integrated Firebase for real-time database and authentication

    • Used Glide library for image loading and caching

    • Implemented RecyclerView for displaying posts and comments

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep ur answers crisp and to the point. Be confident and don't fumble. I was not very confident and hence not selected. Might be other reasons as well but I am pretty sure that if you be confident and answer well u still have chances

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Difference between Intent and PendingIntent?
  • Ans. 

    Intent is used to start an activity or service. PendingIntent is used to perform an action on behalf of another application.

    • Intent is used to start an activity or service within the same application or in another application.

    • PendingIntent is used to perform an action on behalf of another application, such as starting an activity or sending a broadcast.

    • Intent can be used to pass data between activities or services.

    • Pendi...

  • Answered by AI
  • Q2. What is service and it's type and work of Intent service
  • Q3. What is broadcast and it's type of broadcast and what is the use of broadcast?
  • Ans. 

    Broadcast is a messaging system in Android that allows communication between different components of an app or between different apps.

    • Broadcast is a way to send messages to multiple components or apps at once.

    • There are two types of broadcasts: ordered and unordered.

    • Ordered broadcasts are delivered to receivers in a specific order, while unordered broadcasts are delivered to all receivers at once.

    • Broadcasts can be used ...

  • Answered by AI
  • Q4. What is the marker interface and when and where to use interface?
  • Ans. 

    Marker interface is an empty interface used to mark a class as having a particular property or behavior.

    • Marker interface has no methods or fields, it is used to provide metadata to the code.

    • It is used to indicate that a class has a certain capability or should be treated in a special way.

    • Examples of marker interfaces are Serializable, Cloneable, and Remote.

    • Interfaces are used to achieve abstraction and provide a contra...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Tell me about accenture?
  • Ans. 

    Accenture is a global professional services company providing consulting, technology, and outsourcing services.

    • Global presence with offices in over 200 cities across 120 countries

    • Offers services in strategy, consulting, digital, technology, and operations

    • Works with clients in various industries such as healthcare, financial services, and technology

    • Known for its innovation and technology expertise

    • Provides solutions for ...

  • Answered by AI
  • Q2. Introduce yourself?
  • Ans. 

    I am a passionate Android Developer with 5 years of experience in building innovative mobile applications.

    • 5 years of experience in Android development

    • Proficient in Java and Kotlin programming languages

    • Strong understanding of design patterns like MVVM and MVP

    • Experience with RESTful APIs and third-party libraries

    • Published apps on Google Play Store

  • Answered by AI
  • Q3. Mention recent projects executed by accenture?
  • Ans. 

    Accenture has recently executed projects in various industries including healthcare, finance, technology, and retail.

    • Accenture recently worked on a project in the healthcare industry to improve patient care through digital solutions.

    • They also completed a project in the finance sector to enhance customer experience through personalized banking services.

    • In the technology field, Accenture developed a project to implement ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 1 hour 45 minutes
Total Questions: 60

Round: HR Interview
Tips: Listen to each and every members answers who are giving interview with you.

College Name: MITCOE

Interview questions from similar companies

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

I appeared for an interview before Jun 2016.

Interview Questionnaire 

4 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software developer with 5 years of experience in web development and a strong background in computer science.

    • 5 years of experience in web development

    • Strong background in computer science

    • Passionate about software development

  • Answered by AI
  • Q2. Questions related to project I have worked on during college days
  • Q3. Core Java concepts
  • Q4. Why do you use two mobile numbers
  • Ans. 

    To separate personal and professional calls, and to ensure availability and accessibility.

    • Separate personal and professional calls

    • Ensure availability and accessibility

    • Maintain work-life balance

    • Avoid mixing personal and work-related contacts

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 60

College Name: Watumull Institute Of Electronics Engineering And Computer Technology ( WIEECT )

Accenture Interview FAQs

How many rounds are there in Accenture Android Developer interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Technical, HR and Coding Test.
How to prepare for Accenture Android 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 Accenture. The most common topics and skills that interviewers at Accenture expect are Android, Javascript, Web Development, Web Technologies and Android SDK.
What are the top questions asked in Accenture Android Developer interview?

Some of the top questions asked at the Accenture Android Developer interview -

  1. Last project and what technology and architecture used in the ap...read more
  2. what is broadcast and it's type of broadcast and what is the use of broadcas...read more
  3. what is the marker interface and when and where to use interfa...read more

Tell us how to improve this page.

Accenture Android Developer Interview Process

based on 6 interviews

1 Interview rounds

  • Technical Round
View more
Accenture Android Developer Salary
based on 52 salaries
₹4.7 L/yr - ₹15.3 L/yr
43% more than the average Android Developer Salary in India
View more details

Accenture Android Developer Reviews and Ratings

based on 5 reviews

4.2/5

Rating in categories

3.6

Skill development

4.1

Work-life balance

4.5

Salary

4.4

Job security

3.5

Company culture

4.0

Promotions

3.3

Work satisfaction

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

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.4k salaries
unlock blur

₹6.9 L/yr - ₹20.2 L/yr

Team Lead
24.6k salaries
unlock blur

₹7.1 L/yr - ₹26 L/yr

Senior Software Engineer
18.2k salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Senior Analyst
17.7k salaries
unlock blur

₹5.5 L/yr - ₹21.3 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

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