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

Clear (1)

Photon Interactive Front end Developer Interview Questions and Answers

Updated 23 May 2024

Photon Interactive Front end Developer Interview Experiences

4 interviews found

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

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

I applied via Company Website and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

Create login page and listing products

Round 2 - Aptitude Test 

Self intro, and interests

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR ... read more
Q2. Find Unique Element in Array You have been provided an integer ar ... read more
asked in JUSPAY
Q3. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q4. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
Q5. Sort Linked List Based on Actual Values You are given a Singly Li ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Assignment 

React, JavaScript, es6

Round 2 - Coding Test 

You have to get a rady-made react application work

Round 3 - Technical 

(1 Question)

  • Q1. It was coomon question about react, redux and easy logic task

Interview Preparation Tips

Interview preparation tips for other job seekers - refresh react knowledge and coding fast
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. They provide api and ask to post data in that api with json format

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic of html,css,js and api operations

Photon Interactive interview questions for designations

 IOS Developer

 (4)

 Java Developer

 (2)

 Senior Developer

 (2)

 Software Developer

 (2)

 Android Developer

 (1)

 Senior Android Developer

 (4)

 Node JS Developer

 (2)

 Senior Software Developer

 (1)

Front end Developer Jobs at Photon Interactive

View all

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. 1. Basic html schemantics
  • Q2. 2. Pure JS
  • Q3. 3. Angular advance

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard Interview process

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 360 minutes
Round difficulty - Medium

Basically TCS conduct its flagship event named as CODEVITA . And it offers Internship to prefinal (3rd )year students .

  • Q1. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through possible allocations and calculate the maximum pages assigned to a student.

    • Find the minimum of these maximums to get the optimal allocation.

    • Return the minimum pages allocated in each test case, or -1 if not possible.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaMust be doing B.TECHTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structure , Algorithms ,DBMS , OOPs ,OSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Good understanding of Data Structure and Algorithms 
Tip 2 : Be clear in your Core Subjects.
Tip 3 : Do at least 1 good Project .
Tip 4 : Be humble and speak truth .

Application resume tips for other job seekers

Tip 1 : Simple and Crisp .
Tip 2 : Do host your project and mention the link in the resume .
Tip 3 : Single Page

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic questions on JavaScript, React and HTML/CSS.
  • Q2. Hoisting, Closures, Event Loop, Promises, Async/Await
  • Q3. Semantic elements, block and inline elements, meta tag CSS box model, ways of adding CSS, CSS pre-processors
  • Q4. React questions on component lifecycle, different hooks and thier use, fetching data and displaying it in a list.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the core concepts of Js, HTML and CSS
Basic React topics like component life cycle, fetching data using api endpoints.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was easy not that hard

Round 2 - Coding Test 

Coding question were on medium level

Round 3 - Technical 

(1 Question)

  • Q1. Be prepared for project question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. CSS Box-model definition
  • Ans. 

    CSS Box-model defines how elements are rendered in a webpage, including padding, border, and margin.

    • Box-model consists of content, padding, border, and margin

    • Content area is where text or images are displayed

    • Padding is the space between content and border

    • Border is the line around the content and padding

    • Margin is the space outside the border

  • Answered by AI
  • Q2. Difference b/n flexbox and grid
  • Ans. 

    Flexbox is for one-dimensional layouts, grid is for two-dimensional layouts.

    • Flexbox is best for arranging items in a single row or column.

    • Grid is best for creating complex layouts with rows and columns.

    • Flexbox is more suitable for smaller scale layouts, while grid is better for larger scale layouts.

    • Flexbox is more flexible in terms of item order and sizing, while grid provides more control over the overall layout.

    • Both

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2022. There were 4 interview rounds.

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 Resume tips
Round 2 - Coding Test 

How revere the string without using reverse method

Round 3 - Coding Test 

Split duplication from the array

Round 4 - HR 

(2 Questions)

  • Q1. Salary negotiation, asked about my previous employer
  • Q2. Speak bold at time of salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared, have a hand experience in your technical
Contribute & help others!
anonymous
You can choose to be anonymous

Photon Interactive Interview FAQs

How many rounds are there in Photon Interactive Front end Developer interview?
Photon Interactive interview process usually has 1-2 rounds. The most common rounds in the Photon Interactive interview process are Assignment, Technical and Aptitude Test.
How to prepare for Photon Interactive Front end 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 Front End, Javascript, HTML, Angular and Backend.
What are the top questions asked in Photon Interactive Front end Developer interview?

Some of the top questions asked at the Photon Interactive Front end Developer interview -

  1. what is a promise? in javascr...read more
  2. var,let and const differen...read more
  3. it was coomon question about react, redux and easy logic t...read more

Recently Viewed

LIST OF COMPANIES

Discover companies

Find best workplace

INTERVIEWS

Allstate

No Interviews

SALARIES

Alpha Edge Infratech

INTERVIEWS

Grasim Industries

No Interviews

INTERVIEWS

Grasim Industries

No Interviews

INTERVIEWS

Grasim Industries

No Interviews

INTERVIEWS

Grasim Industries

No Interviews

INTERVIEWS

Grasim Industries

No Interviews

INTERVIEWS

Grasim Industries

No Interviews

INTERVIEWS

Allstate

No Interviews

Tell us how to improve this page.

Photon Interactive Front end Developer Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

Photon Interactive Front end Developer Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

4.2

Skill development

4.1

Work-life balance

4.6

Salary

4.1

Job security

5.0

Company culture

4.2

Promotions

4.1

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
972 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
485 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
417 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
136 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Manager
99 salaries
unlock blur

₹0 L/yr - ₹0 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