Upload Button Icon Add office photos
Engaged Employer

i

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

Photon Interactive Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Photon Interactive Senior Android Developer Interview Questions, Process, and Tips

Updated 6 Dec 2024

Top Photon Interactive Senior Android Developer Interview Questions and Answers

View all 7 questions

Photon Interactive Senior Android Developer Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Created an app which take data from API service and show in a list using jetpack compose

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 was 1 interview round.

Round 1 - One-on-one 

(8 Questions)

  • Q1. Explain about MVVM
  • Ans. 

    MVVM is an architectural pattern used in software development, particularly in Android apps, to separate the user interface from the business logic.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View is the UI component that displays the data and interacts with the user

    • ViewModel acts as a mediator between the Model and View, handling user interactions and updating the Model

    • MVVM helps in...

  • Answered by AI
  • Q2. Kotlin scope function
  • Q3. Sealed claa in kotlin
  • Ans. 

    Sealed classes in Kotlin are used to represent restricted class hierarchies.

    • Sealed classes can have a limited set of subclasses defined within the same file.

    • They are useful for representing a fixed set of types in a hierarchy.

    • Sealed classes are often used in when expressions for exhaustive checks.

  • Answered by AI
  • Q4. Extension function in kotlin
  • Ans. 

    Extension functions in Kotlin allow you to add new functions to existing classes without modifying their source code.

    • Extension functions are defined outside of the class they extend.

    • They can be called on instances of the class as if they were regular methods.

    • They can access the properties and methods of the class they extend.

    • Example: fun String.isEmailValid(): Boolean { ... }

    • Example: fun Int.isEven(): Boolean { ... }

  • Answered by AI
  • Q5. Null safety in kotlin
  • Ans. 

    Null safety in Kotlin ensures that variables cannot hold null values unless explicitly specified.

    • Kotlin uses nullable and non-nullable types to enforce null safety.

    • The '?' operator is used to declare a variable as nullable.

    • Safe call operator '?.' is used to safely access properties or methods of nullable objects.

    • The '!!' operator is used for force unwrapping nullable types, but can lead to NullPointerExceptions.

  • Answered by AI
  • Q6. Room data base explanation
  • Ans. 

    Room database is a persistence library that provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.

    • Room database simplifies database interactions by providing compile-time verification of SQL queries.

    • It consists of three main components: Entity, DAO (Data Access Object), and Database.

    • Entities represent tables in the database, DAOs define methods to i...

  • Answered by AI
  • Q7. Find the vowels in a string and convert that into upper case
  • Ans. 

    Convert vowels in a string to uppercase

    • Iterate through each character in the string

    • Check if the character is a vowel (a, e, i, o, u)

    • If it is a vowel, convert it to uppercase

  • Answered by AI
  • Q8. Explain about jet compose
  • Ans. 

    Jet Compose is a modern UI toolkit for building native Android apps using a declarative approach.

    • Jet Compose is a declarative UI framework for building Android apps.

    • It allows developers to create UI components using Kotlin code.

    • Jet Compose simplifies UI development by eliminating the need for XML layouts.

    • It provides a more flexible and efficient way to create dynamic UIs.

    • Jet Compose is part of the Jetpack libraries pro

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Photon Interactive Senior Android Developer interview:
  • Kotlin
  • Scope function
  • Sealed
  • Extension
  • MVVM
  • Null safety

Skills evaluated in this interview

Senior Android Developer Interview Questions Asked at Other Companies

Q1. Binary Array Sorting Problem Statement You are provided with a bi ... read more
Q2. Maximum Subarray Sum Problem Statement Given an array arr of leng ... read more
Q3. what is daemon Thread? what is data Class? Garbage Collector? Act ... read more
Q4. How does RecyclerView work internally?
asked in Nykaa
Q5. What is a Service? How can a notification in a Foreground Service ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Question Related - Compose, Coroutine, Flow, Architecture based, print repeated number in string
Round 2 - Coding Test 

45 MCQ Questions - related to. - Activity, Fragment, compose, coroutine, flow and 1 coding question print the sum of all even number in an array

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well Compose, Coroutine, Flow
Round 1 - Coding Test 

Data Structure , Activity , Collection

Round 2 - Technical 

(1 Question)

  • Q1. Work manager , Activity , Fragment ,ArrayList, LinkList .............

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basics android Question

Photon Interactive interview questions for designations

 Android Developer

 (1)

 Senior Android Application Developer

 (1)

 Senior Developer

 (2)

 Senior Software Developer

 (1)

 IOS Developer

 (4)

 Software Developer

 (2)

 Java Developer

 (2)

 Front end Developer

 (4)

Interview questions from similar companies

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
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Mostly in automotive android
  • Q2. What is car propertymanager and mostly in to aosp
  • Ans. 

    Car propertymanager is a component in AOSP that manages properties related to car-specific features.

    • Car propertymanager is used to handle properties like car make, model, year, etc.

    • It is mostly used in Android Automotive OS for managing car-specific settings and configurations.

    • Developers can use car propertymanager to access and modify car-related properties in their apps.

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Software skills assessment
Round 3 - Client Interview 

(1 Question)

  • Q1. More than technical it was soft skills assessment

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview for Gothenburg location and client is volvo cars . They asked more soft skills questions and less technical. but they rejected .the reason is need more technical knowledge.the interviewer must ask technical questions then only candidate can explain .this is kind of intentionally rejected . because I passed deep technical discussion with luxoft but client doesn't asked technical much .but they said need more knowledge in technical.what type of assessment is this ? Please check with hr before your round what is the exact client expectations.for HMI development they expecting more in lower level of Android like HAL layer. This is irrelevant to the job role.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to basics of Kotlin
  • Q2. Questions related to basics of Android
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Aug 2023.

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 - Technical 

(1 Question)

  • Q1. Android: SOLID, Room dB, Jetpack component Kotlin : advantages, elvis operator, inline/higher order function, DSA- array, list
Round 3 - Technical 

(1 Question)

  • Q1. Java basics OOPS, Hashmaps, DSA problem, Android basics
Round 4 - One-on-one 

(1 Question)

  • Q1. Overall journey , goals

Interview Preparation Tips

Interview preparation tips for other job seekers - My all 3 rounds scheduled on the spot & I cleared with good scores. HR confirmed intitally if 1st round cleared they will release offer immediately, but still arranges 2 more rounds but didn't get any offer from them, it was very disappointing & bad experience
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops based question
  • Q2. Solid principles and how to implement
  • Ans. 

    Solid principles are a set of five design principles for writing maintainable and scalable code.

    • Single Responsibility Principle: A class should have only one reason to change.

    • Open/Closed Principle: Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Interfa...

  • Answered by AI
Round 2 - Coding Test 

Tata using network layer

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jan 2023. There were 4 interview rounds.

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 - Technical 

(1 Question)

  • Q1. Questions on MVVM, LiveData and Kotlin
Round 3 - Technical 

(1 Question)

  • Q1. Andriod concets, Livedata, viewModal, Corotines, Kotlin & Java concepts
Round 4 - HR 

(1 Question)

  • Q1. 1. Why are you choosing this company? 2. If there is high package job & high knowledge job, which one you will choose? 3. Where do you see yourself in 5 years?
  • Ans. 

    I am choosing this company because of its strong reputation, innovative projects, and great work culture.

    • Strong reputation: The company has a proven track record of success and is highly regarded in the industry.

    • Innovative projects: The company is known for its cutting-edge technology and exciting projects, which will provide me with opportunities to learn and grow.

    • Great work culture: The company values its employees a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They contacted thru phone by seeing my naukri profile. They scheduled a L1- technical discussion initially. I attended it and cleared the round. Then they scheduled another level of technical discussion within a week. I attended it and cleared that round too. Then withut any prior notice, few days later they said I cleared the technical rounds and asked me to attend the HR discussion immediately. I attended it that day itself. But no salary discussion happened in that call. She mentioned I will have another round for salary discussion. Then I received an email to send them the docs for releasing offer letter. I called the recruiting HR to verify it. She mentioned that this is the process they follow for every candidature and I need to send those documents for BGC and after that they will release the offer. So I sent those documents to her and then that's it. I have never heard back from them. I called her some days later and she talked to me like she never remember my candidature. Then I asked her when they will release the offer? She said she needs few more approvals from management then only she can release the offer. I wondered if they dont have the budget then why are they scheduling interviews? Every candidate would have already mentioned their expected CTC on the initial call itself. If they dont have the budget to provide that, then why are they conducting 3-4 rounds just to waste time for both parties. I strongly recommend this organization to clearly work on the recruitment process or else they will lose potential candidates and it will not help them in long run.

Photon Interactive Interview FAQs

How many rounds are there in Photon Interactive Senior Android Developer interview?
Photon Interactive interview process usually has 1-2 rounds. The most common rounds in the Photon Interactive interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Photon Interactive Senior 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 Photon Interactive. The most common topics and skills that interviewers at Photon Interactive expect are Android, Kotlin, Android SDK, Database and Java.
What are the top questions asked in Photon Interactive Senior Android Developer interview?

Some of the top questions asked at the Photon Interactive Senior Android Developer interview -

  1. Find the vowels in a string and convert that into upper c...read more
  2. Explain about jet comp...read more
  3. Sealed claa in kot...read more

Tell us how to improve this page.

Photon Interactive Senior Android Developer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Photon Interactive Senior Android Developer Salary
based on 12 salaries
₹7 L/yr - ₹15.5 L/yr
At par with the average Senior Android Developer Salary in India
View more details

Photon Interactive Senior Android Developer Reviews and Ratings

based on 2 reviews

1.2/5

Rating in categories

1.2

Skill development

1.2

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.2

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
977 salaries
unlock blur

₹6.1 L/yr - ₹24 L/yr

Software Engineer
491 salaries
unlock blur

₹3.4 L/yr - ₹13.1 L/yr

Technical Lead
415 salaries
unlock blur

₹10.5 L/yr - ₹31 L/yr

Softwaretest Engineer
135 salaries
unlock blur

₹2.8 L/yr - ₹11.5 L/yr

Project Manager
107 salaries
unlock blur

₹8 L/yr - ₹24.5 L/yr

Explore more salaries
Compare Photon Interactive with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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