Upload Button Icon Add office photos

Filter interviews by

Photon Technologies Senior Android Developer Interview Questions and Answers

Updated 5 Sep 2024

Photon Technologies Senior Android Developer Interview Experiences

1 interview found

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

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Interviewer asked a lot of questions covering almost everything in android
  • Q2. Explain Work manager and how it is implemented
  • Ans. 

    Work manager is an Android library that manages background tasks efficiently.

    • Work manager is part of Android Jetpack and is used for deferrable background tasks.

    • It provides a way to schedule tasks that need to run even if the app is in the background or not running.

    • Work manager handles task constraints, retries, and backoff policies automatically.

    • Tasks can be one-time or periodic, with support for specifying constraint...

  • Answered by AI
  • Q3. How retrofit is integrated
  • Ans. 

    Retrofit is integrated in Android apps using a few simple steps.

    • Add Retrofit dependency in build.gradle file

    • Create an interface with API endpoints using Retrofit annotations

    • Instantiate Retrofit object with base URL and converter factory

    • Create API service using the interface and Retrofit object

    • Make API calls using the service and handle responses

  • Answered by AI
  • Q4. How to create custom UI
  • Ans. 

    Custom UI can be created by designing layouts using XML or programmatically in Android.

    • Design UI elements using XML in layout files

    • Customize UI elements programmatically using Java or Kotlin

    • Use libraries like ConstraintLayout for complex layouts

    • Implement custom views by extending existing views or creating new ones

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Photon Technologies Senior Android Developer interview:
  • Work manager
  • Services
  • Custom UI
Interview preparation tips for other job seekers - 1 hour interview. Asks theory like questions, we have to remember the code to answer.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(3 Questions)

  • Q1. What are the different types of interfaces?
  • Ans. 

    Different types of interfaces include user interfaces, hardware interfaces, and software interfaces.

    • User interfaces: allow users to interact with the system, such as graphical user interfaces (GUI) and command-line interfaces (CLI)

    • Hardware interfaces: connect hardware components to the system, such as USB, HDMI, and Ethernet ports

    • Software interfaces: define how software components interact with each other, such as appl...

  • Answered by AI
  • Q2. What is the output of the program when the expression is evaluated as 0 divided by 7?
  • Ans. 

    The output of the program when 0 is divided by 7 is 0.

    • Division of 0 by any number results in 0.

    • In programming languages, dividing by 0 usually results in an error or undefined behavior.

  • Answered by AI
  • Q3. What are coroutines, scope functions, and visibility modifiers?
  • Ans. 

    Coroutines, scope functions, and visibility modifiers are key concepts in Kotlin programming for Android development.

    • Coroutines are a way to perform asynchronous programming in a sequential manner. They allow for non-blocking operations.

    • Scope functions are functions that allow you to execute a block of code within the context of an object. Examples include 'let', 'apply', 'run', 'also', and 'with'.

    • Visibility modifiers ...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What is the MVVM (Model-View-ViewModel) architectural pattern?
  • Ans. 

    MVVM is an architectural pattern that separates the user interface from the business logic and data handling in Android development.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the UI elements and sending user interactions to the ViewModel.

    • ViewModel acts as a mediator between the Model and the View, handling the communication and data flow.

    • MVVM helps in achieving se...

  • Answered by AI
  • Q2. What are the reasons for using that, and what are its pros and cons?
  • Ans. 

    Using dependency injection in Android development can improve code maintainability and testability.

    • Pros: easier to manage dependencies, promotes code reusability, facilitates unit testing

    • Cons: initial setup can be complex, may introduce overhead in smaller projects

    • Example: Using Dagger 2 for dependency injection in an Android project

  • Answered by AI
  • Q3. Questions related Dependency injection dagger-hilt / koin
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How do you handle the multiple view in Recyclerview?
  • Ans. 

    Multiple views in RecyclerView can be handled by using different view types and view holders.

    • Use getItemViewType() method to return different view types based on position

    • Create multiple view holders for each view type

    • Bind data to each view holder based on its type

    • Example: Creating a chat app with different message types like text, image, and video

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is UI thread?
  • Ans. 

    UI thread is the main thread in Android responsible for handling user interface interactions.

    • UI thread is also known as the main thread in Android.

    • It is responsible for handling user interface interactions such as drawing views, handling touch events, and updating UI components.

    • Performing long-running tasks on the UI thread can lead to UI freezes and unresponsiveness.

    • To perform background tasks and prevent blocking the...

  • Answered by AI
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
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is MVVM and how to bind data using MVVM
  • Ans. 

    MVVM is a design pattern that separates the UI from the business logic by introducing a middle layer called ViewModel.

    • Model-View-ViewModel design pattern

    • ViewModel acts as a link between the Model and View

    • Data binding is used to connect the ViewModel to the View

    • Updates in the ViewModel automatically reflect in the View

  • Answered by AI
  • Q2. What is SSL pinning
  • Ans. 

    SSL pinning is a security measure used to prevent man-in-the-middle attacks by associating a specific SSL certificate with a particular app.

    • SSL pinning involves hardcoding the expected SSL certificate or public key within the mobile app.

    • This helps verify the server's identity and prevent attackers from intercepting and decrypting communication.

    • SSL pinning can be implemented using libraries like TrustKit or manually by ...

  • Answered by AI

Skills evaluated in this interview

IOS Developer Interview Questions & Answers

CGI Group user image Asha Treesa Kurian

posted on 10 Apr 2024

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

(1 Question)

  • Q1. Based on the position
Round 2 - HR 

(1 Question)

  • Q1. About previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to work with
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
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 - 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

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

Photon Technologies Interview FAQs

How many rounds are there in Photon Technologies Senior Android Developer interview?
Photon Technologies interview process usually has 1 rounds. The most common rounds in the Photon Technologies interview process are One-on-one Round.
What are the top questions asked in Photon Technologies Senior Android Developer interview?

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

  1. Explain Work manager and how it is implemen...read more
  2. How retrofit is integra...read more
  3. How to create custom...read more

Tell us how to improve this page.

Photon Technologies Senior Android Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Senior Software Engineer
79 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Software Engineer
24 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Technical Lead
21 salaries
unlock blur

₹16.4 L/yr - ₹25.5 L/yr

Softwaretest Engineer
14 salaries
unlock blur

₹4.5 L/yr - ₹10.1 L/yr

Software Developer
13 salaries
unlock blur

₹5.6 L/yr - ₹15.9 L/yr

Explore more salaries
Compare Photon Technologies with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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