Upload Button Icon Add office photos
Engaged Employer

i

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

UST Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 4.1k Reviews

Filter interviews by

UST android Software Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

Normal MCQ questions reasoning, java related and programs outputs

Round 2 - Coding Test 

Difference between abstract classes and interfaces, Array sort time complexity

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

I was interviewed in Apr 2024.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Questions related to koltin
  • Q2. Jetpack compose uses
  • Ans. 

    Jetpack Compose is a modern Android UI toolkit that simplifies and accelerates UI development.

    • Declarative UI: Jetpack Compose allows developers to build UI using a declarative programming model.

    • State management: Jetpack Compose handles state management efficiently, making it easier to update UI based on data changes.

    • Compose functions: Developers can create reusable UI components using Compose functions.

    • Interoperability...

  • Answered by AI
  • Q3. Difference between remember and rememberSaveable
  • Ans. 

    remember is used to store a value in a composable function, while rememberSaveable is used to store a value that survives configuration changes.

    • remember is used to store a value that does not survive configuration changes

    • rememberSaveable is used to store a value that survives configuration changes, such as rotation of the device

    • rememberSaveable is typically used for storing view model data in Jetpack Compose

  • Answered by AI
  • Q4. Coroutines parallel and sequential processing

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basics of Android
Round 2 - Technical 

(1 Question)

  • Q1. Technical implementation
Round 3 - HR 

(1 Question)

  • Q1. Company fit culture test
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Android Basics on mvvm architecture
  • Q2. Navigation Component
  • Q3. Jetpack components- work manager, viewmodel
Round 2 - HR 

(1 Question)

  • Q1. Managerial questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Basic of kotlin questions
  • Q2. Live data and life cycle
  • Q3. Diff between MVVM and other architectures
  • Ans. 

    MVVM is a design pattern that separates the UI, business logic, and data layers, promoting better code organization and testability.

    • MVVM stands for Model-View-ViewModel, where the ViewModel acts as an intermediary between the View and the Model.

    • MVVM promotes data binding, making it easier to keep the UI in sync with the underlying data.

    • Other architectures like MVC (Model-View-Controller) and MVP (Model-View-Presenter) ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2023. There were 4 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 tips
Round 2 - Aptitude Test 

The question about prblm solving

Round 3 - Assignment 

Any presentation or pdf to submit it at any topic or else to explain it

Round 4 - Group Discussion 

The discussion with my team mate

Interview Preparation Tips

Topics to prepare for DXC Technology Senior Android Developer interview:
  • About Html
  • C
Interview preparation tips for other job seekers - It will help me for placement
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic android questions
  • Q2. Services mvvm roomdb and all basic android things

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep prepare well solve leetcode more.
Try to be positive even through you are not getting output try to explain your logic
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. MVVM, kotlin, MVP

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepare kotlin and core java

I applied via Naukri.com and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Android basics, fragments, activities, their life cycle
  • Q2. Java basics, wrapper, kotlin, mvvm, api calls
  • Q3. Dsa question- move all the zeroes to left and 1s to the right
  • Ans. 

    Move all zeroes to left and ones to right in an array

    • Iterate through the array from both ends

    • Swap the elements if left is 1 and right is 0

    • Stop when left and right pointers meet

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Service, background foreground service
  • Q2. Mvvm, how does it work, viewmodel internal
  • Q3. Memory leakage, how to avoid and identify
  • Ans. 

    Memory leakage can cause app crashes and slow performance. It can be avoided by proper memory management and identifying the root cause.

    • Avoid creating unnecessary objects

    • Release unused resources

    • Use memory profiling tools like Android Profiler

    • Avoid static references to objects

    • Use weak references when necessary

  • Answered by AI
  • Q4. Perquisite to release app on play store
  • Ans. 

    Perquisites for releasing an app on Play Store

    • Creating a developer account on Google Play Console

    • Complying with Google Play policies and guidelines

    • Providing accurate app information and metadata

    • Ensuring app compatibility with target devices

    • Testing app thoroughly for bugs and crashes

    • Publishing app with appropriate content rating

    • Setting up monetization options and pricing

    • Providing customer support and responding to user

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GlobalLogic Android Developer interview:
  • Android
  • Java
  • Multithreading
  • Kotlin
  • MVVM
Interview preparation tips for other job seekers - Better to prepare a hands on project

Skills evaluated in this interview

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

Tell us how to improve this page.

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
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
DXC Technology Interview Questions
3.7
 • 801 Interviews
Mphasis Interview Questions
3.4
 • 786 Interviews
View all
Software Developer
2k salaries
unlock blur

₹3.5 L/yr - ₹12.1 L/yr

Senior Software Engineer
1.6k salaries
unlock blur

₹6.5 L/yr - ₹25.7 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.7 L/yr - ₹14.6 L/yr

System Analyst
1.2k salaries
unlock blur

₹6.5 L/yr - ₹22.2 L/yr

Senior Software Developer
1.1k salaries
unlock blur

₹5.5 L/yr - ₹19.5 L/yr

Explore more salaries
Compare UST with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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