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
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. React native hooks
  • Q2. Component architecture
Round 2 - Technical 

(2 Questions)

  • Q1. Javascript programs
  • Q2. Coding
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic ios development questions
  • Q2. Core data or any other data base

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went really well but still rejected.
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
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions related to opps, kotlin and some scenario based question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Basic interview on question like aptitude, javascript, typescript and react-native question

Round 2 - Technical 

(5 Questions)

  • Q1. Basic javascript question in second round
  • Q2. What is function currying
  • Ans. 

    Function currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying allows you to partially apply a function by fixing a number of arguments, which creates a new function.

    • It helps in creating reusable functions and improves code readability.

    • Example: const add = (a) => (b) => a + b; const add5 = add

  • Answered by AI
  • Q3. What is IIEF where we can use it
  • Ans. 

    IIFE stands for Immediately Invoked Function Expression, used for creating a function that is executed immediately after it is defined.

    • IIFE is used to create a private scope for variables to avoid polluting the global scope.

    • It is commonly used in React Native development to encapsulate code and prevent naming conflicts.

    • Example: (function() { console.log('IIFE executed'); })();

  • Answered by AI
  • Q4. Deeply they ask me closure related question how it's working
  • Q5. How call call stack and event loop is working
  • Ans. 

    Call stack is used to keep track of function calls, while event loop manages asynchronous operations in JavaScript.

    • Call stack is a data structure that keeps track of function calls in a program.

    • When a function is called, it is added to the top of the call stack. When the function completes, it is removed from the stack.

    • Event loop is responsible for managing asynchronous operations in JavaScript, ensuring that they are ...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Project related discussion only

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi Nagarow hiring team,

My first round of interview is going and in second round they ask me more technical and deep technical questions that was also very good.

In third round of interview the interviewer ask me only project related question. I try to explain that but he did't give me to chance to say some think. From one question to second, Second of third. Main point is if only interviewer ask question and interviewee say something and you again ask question how i explain me though on it.

If my application build on salesForce he told me to why it's build in salesforce. Why it's not develop in node or/and other database. My client decided that i know it also develop in node or other database. But i can't suggestion my client after 4 years of development .

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