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
4.0

based on 1.7k Reviews

Filter interviews by

Photon Interactive Interview Questions, Process, and Tips

Updated 26 Dec 2024

Top Photon Interactive Interview Questions and Answers

View all 60 questions

Photon Interactive Interview Experiences

Popular Designations

103 interviews found

IOS Developer Interview Questions & Answers

user image Anonymous

posted on 23 May 2024

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

I applied via Recruitment Consulltant and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Protocol, Optional, GCD, Push Notifications, and app life cycle?
Round 2 - Technical 

(1 Question)

  • Q1. Two sums from leetcode, NSOperation vs GCD, View life cycle, tuple
  • Ans. 

    The interview question covers topics like solving two sum problems, NSOperation vs GCD, view life cycle, and tuples.

    • Two sum problems involve finding two numbers in an array that add up to a specific target. Example: [2, 7, 11, 15], target = 9

    • NSOperation and GCD are both used for concurrent programming in iOS. NSOperation provides more control and features, while GCD is lower level and more lightweight.

    • View life cycle i...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salay expectations

Skills evaluated in this interview

IOS Developer Interview Questions asked at other Companies

Q1. 1 - MVC PATTERN 2- CLOUSERS & it's type 3- Google SDK like Google maps 3- How u manage the constraints of any label , stick at every corner & center of view controller, when getting data from json.
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is hoist and closure
  • Ans. 

    Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their containing scope during the compilation phase. Closures are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Hoisting moves variable and function declarations to the top of their scope.

    • Closures allow functions to access variables from their outer s...

  • Answered by AI
  • Q2. What is useCallback hook?
  • Ans. 

    useCallback is a hook in React that returns a memoized callback function

    • Returns a memoized callback function

    • Helps in optimizing performance by preventing unnecessary re-renders

    • Useful when passing callbacks to child components that rely on reference equality

  • Answered by AI
Round 2 - Coding Test 

Update state from child compoenent

Skills evaluated in this interview

Full Stack Developer Interview Questions asked at other Companies

Q1. Query And MatrixYou are given a binary matrix with ‘M’ rows and ‘N’ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)

SSE Interview Questions & Answers

user image Anonymous

posted on 4 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions from React
  • Q2. Questions from Testing

SSE Interview Questions asked at other Companies

Q1. What is docker and what are the basic commands of docker
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Var,let and const differences
  • Ans. 

    var, let, and const are all used for variable declaration in JavaScript, but they have different scopes and behaviors.

    • var is function scoped, let and const are block scoped

    • var can be redeclared and updated, let can be updated but not redeclared, const cannot be redeclared or updated

    • const is used for variables that should not be reassigned, like constants

  • Answered by AI
  • Q2. What is a promise? in javascript
  • Ans. 

    A promise in JavaScript represents the eventual completion (or failure) of an asynchronous operation and its resulting value.

    • Promises are objects that represent the eventual completion (or failure) of an asynchronous operation.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and failure.

    • Example: new Promise((resolve, reject) => { ... }).then(res

  • Answered by AI

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)

Photon Interactive interview questions for popular designations

 Software Engineer

 (9)

 Senior Software Engineer

 (7)

 Business Analyst

 (5)

 Innovation Consultant

 (5)

 Technical Lead

 (5)

 Front end Developer

 (4)

 IOS Developer

 (4)

 Senior Android Developer

 (4)

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

I applied via Job Portal and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Write a code for Factorial series

Round 2 - Technical 

(2 Questions)

  • Q1. Deep learning related
  • Q2. Maximum GenAI Based question

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)

Get interview-ready with Top Photon Interactive Interview Questions

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. About DevOps & roles and responsibilities
  • Q2. Intro about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont join this company,
you may loose your career.
You will loose your self confidence.
No job security
Not a good & positive vibes
Nobody have good skill in that company

Senior Devops Engineer Interview Questions asked at other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
View answer (3)

Jobs at Photon Interactive

View all
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(1 Question)

  • Q1. SDLC STLC AGILE METHODLOGIES SCRUM REVIEW RETROSPECTIVE TEST CASES ON CALENDER

Interview Preparation Tips

Interview preparation tips for other job seekers - This was the first round of questions they asked me

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination SumYou are given an array/list ARR of N distinct positive integers. You are also given a non-negative integer B. Your task is to find all unique combinations in the array whose sum is equal to B. A number can be chosen any numbe... read more
View answer (2)
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

Normal Assessment test

Round 2 - Technical 

(1 Question)

  • Q1. May be the interviewer was expecting 200 years of experience from a 3.6 years Experienced person. So prepare accordingly.

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask them for actual requirement for the particular opening.

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Asked basic question about Undergraduation
Round 2 - HR 

(1 Question)

  • Q1. Project manager scenario based question

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well on project management

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)

Lead Role Interview Questions & Answers

user image Anonymous

posted on 26 Jan 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to React Native, Redux, given codebase to fix one bug

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not share your documents with them unless you discuss about expected CTC. They first collect all docs and then ask about expected CTC and on top of that they won't give you an offer saying CTC is above budget. They are just collecting which is illegal. Better avoid this company.

Photon Interactive Interview FAQs

How many rounds are there in Photon Interactive interview?
Photon Interactive interview process usually has 1-2 rounds. The most common rounds in the Photon Interactive interview process are Technical, One-on-one Round and HR.
How to prepare for Photon Interactive 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 Javascript, Java, Python, Microservices and SQL.
What are the top questions asked in Photon Interactive interview?

Some of the top questions asked at the Photon Interactive interview -

  1. What are design patterns, and have you implemented any of the design pattern in...read more
  2. what is ES6 feature small coding on how let,var,const works javascript set , cl...read more
  3. What is responsive design ? How will you develop responsive website...read more
How long is the Photon Interactive interview process?

The duration of Photon Interactive interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Photon Interactive Interview Process

based on 59 interviews in last 1 year

Interview experience

3.6
  
Good
View more

People are getting interviews through

based on 57 Photon Interactive interviews
Job Portal
Company Website
Recruitment Consultant
Referral
Campus Placement
WalkIn
58%
9%
7%
5%
5%
2%
14% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 779 Interviews
CitiusTech Interview Questions
3.4
 • 259 Interviews
View all

Photon Interactive Reviews and Ratings

based on 1.7k reviews

4.0/5

Rating in categories

4.1

Skill development

4.0

Work-Life balance

4.1

Salary & Benefits

3.9

Job Security

4.0

Company culture

3.9

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1.7k Reviews and Ratings
Sr UX Designer

Kolkata,

Mumbai

+5

5-10 Yrs

Not Disclosed

Scrum Master - Bangalore

Kolkata,

Mumbai

+5

8-13 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
990 salaries
unlock blur

₹6.1 L/yr - ₹23 L/yr

Software Engineer
504 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Technical Lead
405 salaries
unlock blur

₹10 L/yr - ₹28 L/yr

Softwaretest Engineer
137 salaries
unlock blur

₹2.8 L/yr - ₹12 L/yr

Project Manager
110 salaries
unlock blur

₹8.5 L/yr - ₹24.5 L/yr

Explore more salaries
Compare Photon Interactive 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