Upload Button Icon Add office photos

Filter interviews by

CMS IT Services Android Developer Interview Questions and Answers

Updated 19 Mar 2024

CMS IT Services Android Developer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Interview Questions on Oops, Services, Dagger, Services

Interview questions from similar companies

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

(1 Question)

  • Q1. What is Multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for improved performance and responsiveness in applications.

    • Multithreading allows multiple tasks to be executed simultaneously on a single CPU core.

    • Each thread has its own stack and runs independently, sharing resources with other threads.

    • Examples of multithreading include running background tasks while the main UI thread remains

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain MVVM architecture
  • Ans. 

    MVVM is an architectural pattern that separates the UI, business logic, and data layers in an Android app.

    • Model: Represents the data and business logic of the application.

    • View: Represents the UI components of the application.

    • ViewModel: Acts as a mediator between the Model and View, handling communication and logic.

    • Data binding: MVVM uses data binding to synchronize the View and ViewModel.

    • Example: In an Android app, the...

  • Answered by AI
  • Q2. Explain Java Basic concept
  • Ans. 

    Java is a high-level programming language known for its simplicity and versatility.

    • Java is an object-oriented language

    • It is platform-independent due to its 'write once, run anywhere' principle

    • Java uses a virtual machine (JVM) to execute code

    • It supports multithreading for concurrent programming

    • Java has automatic memory management through garbage collection

  • Answered by AI
  • Q3. Explain Kotlin modifiers
  • Ans. 

    Kotlin modifiers are keywords used to modify classes, properties, functions, and other elements in Kotlin programming language.

    • Kotlin modifiers include 'public', 'private', 'protected', 'internal', 'open', 'final', 'abstract', 'override', 'lateinit', 'const', 'companion', 'inline', 'data', 'sealed', 'inner', etc.

    • Modifiers like 'public', 'private', 'protected', and 'internal' control the visibility of classes, functions...

  • Answered by AI
  • Q4. Explain RXJava networking library
  • Ans. 

    RXJava is a popular Java library for composing asynchronous and event-based programs using observable sequences.

    • RXJava provides a powerful way to handle asynchronous operations by using observables and subscribers.

    • It simplifies complex asynchronous code by allowing developers to chain operations and handle errors more easily.

    • RXJava is commonly used in Android development for handling network requests and background tas...

  • Answered by AI
  • Q5. Explain Git commit , merge and rebase command
  • Ans. 

    Git commit records changes to the repository, merge combines changes from different branches, and rebase moves changes to a new base commit.

    • Git commit saves changes to the local repository with a message describing the changes made.

    • Git merge combines changes from different branches into the current branch.

    • Git rebase moves changes from one branch to another by applying each commit from the source branch to the target br

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain hooks in react
  • Ans. 

    Hooks are a new addition in React 16.8 that allow you to use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are reusable functions that can contai...

  • Answered by AI
Round 2 - Assignment 

Create weather application in react native with unit test scripts

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently interviewed for react native developer position and it started with a technical discussion followed by an assessment and after clearing both rounds I was asked to submit a detailed document regarding my technical experience and past projects. Since then I didn't get any feedback from the company I even tried to contact the Xoriant hr directly but was unable to get any reply so it was a very disappointing experience.

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Oops , programming, collection, java basic and Kotlin basic

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic welll for java and Kotlin.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(10 Questions)

  • Q1. What is static in Java?
  • Q2. What is singleton?
  • Q3. What is Coroutines?
  • Q4. What is dispatcher?
  • Q5. What is with context in Coroutines?
  • Q6. How to raise request parallel in Coroutines?
  • Q7. Scoped functions in Kotlin.
  • Q8. Background task in Android.
  • Q9. What is the difference between interface and abstract class in Java?
  • Q10. What is let function?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Types of job in kotlin coroutine
  • Ans. 

    Types of jobs in Kotlin coroutine include launch, async, withContext, and runBlocking.

    • launch: starts a new coroutine without blocking the current thread

    • async: starts a new coroutine and returns a Deferred object with a result

    • withContext: switches the coroutine context within a coroutine

    • runBlocking: blocks the current thread until the coroutine inside it is completed

  • Answered by AI
  • Q2. What is Flow, Channel diffrent between StateFlow and SharedFlow
  • Ans. 

    Flow is a cold asynchronous data stream, Channel is a hot asynchronous data stream. StateFlow is a hot asynchronous data stream with a state, SharedFlow is a hot asynchronous data stream without a state.

    • Flow is a cold asynchronous data stream that emits values one by one.

    • Channel is a hot asynchronous data stream that can have multiple subscribers.

    • StateFlow is a hot asynchronous data stream that retains the most recent ...

  • Answered by AI
  • Q3. If Flow lifecycle aware
  • Ans. 

    Flow lifecycle aware means using Kotlin Flow with lifecycle awareness in Android development.

    • Flow lifecycle aware helps manage data streams in Android apps

    • It ensures that data emissions are only observed when the lifecycle is in the appropriate state

    • Example: Using Flow with LiveData to update UI components based on lifecycle events

  • Answered by AI
  • Q4. What is inline function and highorder function?
  • Ans. 

    Inline functions are functions that are expanded in place at the call site, while high-order functions are functions that can take other functions as parameters or return them.

    • Inline functions are expanded in place at the call site to improve performance.

    • High-order functions can take other functions as parameters or return them.

    • Example of high-order function: map() function in Kotlin.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Kotlin basic

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic interview question
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic interview questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic info of application development and upload process

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't give interview if you are seaching seriously job for iOS development if you have no option then try. completely west of time your 10 to 15 day's will be go waist best do preparation for another company interview because I face one very bad experience they take interview I clear all round they call me in office for HR round salary discuss. After 4 day's I take they said project developer requirement full-fill, kindly try that time I try for another interview but they didn't given feedback on given interview after next day another recruiter call and said you need to give 2 more rounds. They are only playing with your resume I thing they don't need developer.

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

1. Unit testing
2. Program testing
3. Full integration testing

Round 2 - HR 

(1 Question)

  • Q1. Salary dission and other Location and other Salary related discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Android concept very careful. Practice java problems
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. When we are use interface and abstract class in Android
  • Ans. 

    Interfaces and abstract classes are used in Android to achieve abstraction, modularity, and code reusability.

    • Interfaces are used to define a contract that classes must implement, allowing for polymorphism and loose coupling.

    • Abstract classes provide a base implementation for subclasses, allowing for code reuse and providing common functionality.

    • Interfaces are commonly used for event handling, callbacks, and defining con...

  • Answered by AI

Skills evaluated in this interview

CMS IT Services Interview FAQs

How many rounds are there in CMS IT Services Android Developer interview?
CMS IT Services interview process usually has 1 rounds. The most common rounds in the CMS IT Services interview process are Technical.

Tell us how to improve this page.

CMS IT Services Android Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Desktop Support Engineer
966 salaries
unlock blur

₹0.9 L/yr - ₹4.5 L/yr

Engineer- Customer Support
647 salaries
unlock blur

₹1 L/yr - ₹4.6 L/yr

Network Engineer
334 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Technical Support Engineer
283 salaries
unlock blur

₹1.1 L/yr - ₹5.4 L/yr

System Administrator
241 salaries
unlock blur

₹1.4 L/yr - ₹7.9 L/yr

Explore more salaries
Compare CMS IT Services with

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.5
Compare

TCS

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