Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by DXC Technology Team. If you also belong to the team, you can get access from here

DXC Technology Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

DXC Technology Android App Developer Interview Questions and Answers

Updated 20 Aug 2022

DXC Technology Android App Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Explain MVVM in detail
  • Ans. 

    MVVM is a design pattern that separates UI code from business logic and data handling.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View displays the UI and user interactions

    • ViewModel acts as a mediator between Model and View

    • ViewModel exposes data and commands to the View

    • Data binding is used to keep the View and ViewModel in sync

    • MVVM promotes testability and maintainability of code

  • Answered by AI
  • Q2. Kotlin sealed class, data class, scope functions
  • Q3. Core Java basic questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Detail discussion on design patterns
  • Q2. Basic kotlin or java programming
Round 3 - HR 

(1 Question)

  • Q1. Details about notice period and salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Just make sure you know basics in details (kotlin and core Java , android)

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Group Discussion 

Aptitude questions(seating arrangement,number series),verbal reasoning, Networking,Cloud based questions,and pseudocode

Round 2 - Coding Test 

2 coding questions,one will be easy, other will be tough,solving atleast one problem is necessary.

Round 3 - Communication 

(2 Questions)

  • Q1. Read the given sentence
  • Q2. Hear and answer the question
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. About college project(as I am fresher) ,about internship, difficulties faced and how we solved it
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is intent?
  • Ans. 

    Intent is a messaging object used to request an action from another app component.

    • Intent is used to start activities, services, and broadcast receivers in Android.

    • It can also be used to pass data between components.

    • There are two types of intents: explicit intents and implicit intents.

    • Explicit intents specify the component to start by name.

    • Implicit intents specify the action to perform and let the system find the approp

  • Answered by AI
  • Q2. What is work manager?
  • Ans. 

    Work Manager is an Android Jetpack library used for managing deferrable, asynchronous tasks.

    • Work Manager is part of the Android Jetpack library.

    • It is used for managing deferrable, asynchronous tasks that need to run even if the app is in the background.

    • Work Manager provides various constraints and options for scheduling tasks, such as network availability, charging status, and more.

    • It is recommended for tasks that are ...

  • Answered by AI

I applied via Naukri.com and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain activity life cycle
  • Ans. 

    Activity life cycle refers to the stages an activity goes through from creation to destruction.

    • An activity is created using onCreate() method

    • It becomes visible using onStart() method

    • It becomes interactive using onResume() method

    • It goes to background using onPause() method

    • It becomes invisible using onStop() method

    • It gets destroyed using onDestroy() method

  • Answered by AI
  • Q2. What is difference between abstract class and interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods while interface only has abstract methods.

    • Abstract class can have constructors while interface cannot

    • A class can implement multiple interfaces but can only inherit from one abstract class

    • Abstract class can have instance variables while interface cannot

    • Abstract class can provide default implementation for some methods while interface cannot

    • Ex...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Selection process is very simple. Easy to clear all rounds.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jul 2022. There were 2 interview rounds.

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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Agile, data class, how to initialize a class in activity?, dagger, difference between bind and provides annotation, unit test using mockito and junit

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview depends on the interviewer. Mine was not great as he was only expecting me to have a lot of libraries and new technology experience. No basic question was asked.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

There are 90 questions which are aptitude and reasoning and all, within 90 minutes of time we have solved all the problems.

Round 2 - Coding Test 

There 2 coding questions there are easy level only in my opinion, within 1 hour we have solve.

Round 3 - HR 

(3 Questions)

  • Q1. Indrouce about yourself
  • Ans. 

    I am a passionate Android App Developer with 5 years of experience in creating user-friendly and innovative mobile applications.

    • 5 years of experience in Android app development

    • Proficient in Java, Kotlin, and Android Studio

    • Strong understanding of UI/UX design principles

    • Experience with RESTful APIs and third-party libraries

    • Published apps on Google Play Store

  • Answered by AI
  • Q2. What are projects you have done
  • Ans. 

    I have developed a shopping app, a fitness tracker app, and a social media app.

    • Developed a shopping app with user-friendly interface

    • Created a fitness tracker app to monitor daily activities

    • Designed a social media app with real-time messaging feature

  • Answered by AI
  • Q3. What are skills you had
  • Ans. 

    I have strong skills in Java, Android Studio, UI/UX design, and problem-solving.

    • Proficient in Java programming language

    • Experience with Android Studio and Android app development

    • Knowledge of UI/UX design principles

    • Strong problem-solving skills

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Scope functions in kotlin
  • Ans. 

    Scope functions in Kotlin are functions that allow you to execute a block of code within the context of an object.

    • There are five scope functions in Kotlin: let, run, with, apply, and also.

    • Each scope function has a specific use case and can help improve code readability and reduce boilerplate code.

    • Scope functions can be used to perform operations on an object and return a result or modify the object itself.

    • For example, ...

  • Answered by AI
  • Q2. LazyRow vs RecyclerView
  • Ans. 

    LazyRow is a Jetpack Compose component for displaying horizontally scrolling lists, while RecyclerView is a traditional Android view for displaying large data sets efficiently.

    • LazyRow is part of Jetpack Compose, RecyclerView is part of the Android framework

    • LazyRow is more declarative and easier to use for simple lists, RecyclerView is more powerful and customizable for complex lists

    • LazyRow automatically handles recycli...

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Normal aptitude , moderate level

Round 2 - Coding Test 

Same c / Java based coding test , what u have practiced in college level

Round 3 - HR 

(1 Question)

  • Q1. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and pass the coding round

Interview Questionnaire 

1 Question

  • Q1. React life cycle

Business Analyst Interview Questions & Answers

Infosys user image SADHU CHANDRA KIRAN

posted on 9 Nov 2020

Interview Questionnaire 

2 Questions

  • Q1. My Details
  • Q2. Salary package
Contribute & help others!
anonymous
You can choose to be anonymous

DXC Technology Interview FAQs

How many rounds are there in DXC Technology Android App Developer interview?
DXC Technology interview process usually has 3 rounds. The most common rounds in the DXC Technology interview process are One-on-one Round and HR.
What are the top questions asked in DXC Technology Android App Developer interview?

Some of the top questions asked at the DXC Technology Android App Developer interview -

  1. Explain MVVM in det...read more
  2. Kotlin sealed class, data class, scope functi...read more
  3. Detail discussion on design patte...read more

Recently Viewed

INTERVIEWS

WINIT Software

No Interviews

SALARIES

Daimler India Commercial Vehicles

DESIGNATION

LIST OF COMPANIES

Daimler India Commercial Vehicles

Overview

INTERVIEWS

Accenture

No Interviews

SALARIES

Godrej & Boyce Manufacturing

SALARIES

Godrej & Boyce Manufacturing

INTERVIEWS

Capgemini

No Interviews

LIST OF COMPANIES

Godrej & Boyce Manufacturing

Overview

DESIGNATION

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
DXC Technology Android App Developer Salary
based on 5 salaries
₹12.8 L/yr - ₹16.3 L/yr
140% more than the average Android App Developer Salary in India
View more details
Associate Professional Software Engineer
2.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Professional
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Professional 1
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare DXC Technology with

Cognizant

3.7
Compare

Capgemini

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent