Upload Button Icon Add office photos
Engaged Employer

i

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

Entrata Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Entrata PHP Developer Interview Questions and Answers

Updated 27 Nov 2024

Entrata PHP Developer Interview Experiences

3 interviews found

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 27 Nov 2024

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 Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic OOPs concept and coding
Round 2 - Technical 

(3 Questions)

  • Q1. Basic DSA question
  • Q2. 1 mySql query to fetch records
  • Q3. Design patterns

Interview Preparation Tips

Topics to prepare for Entrata PHP Developer interview:
  • php
  • mysql
  • oops
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Logical aptitude test

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for all maths and logical questions

PHP Developer Interview Questions Asked at Other Companies

Q1. How can we report errors in the log file while working on a core ... read more
asked in Impelsys
Q2. What are the different types of errors in PHP?
Q3. Not using array function print [3,4,5,1,2] if my number of loops ... read more
Q4. Write a query to get 4th highest salary from employees table?
Q5. What is the use of group by and having? Write sample query using ... read more

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 13 Apr 2023

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 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 tips
Round 2 - Coding Test 

Hacker rank round of problem solving

Round 3 - Technical 

(1 Question)

  • Q1. Php basic questions not much
Round 4 - Behavioral 

(1 Question)

  • Q1. About work experience in previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technology oriented and basic concepts for the technology
Round 2 - HR 

(1 Question)

  • Q1. Employment specific and Previous CTC

Interview Preparation Tips

Interview preparation tips for other job seekers - Company Innowera was taken over by Magnitude so we are directly got employment of company

- still you can check company Products, and for which you are approaching and prepare well with basic concepts.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Are you open for Relocation
Round 2 - Technical 

(3 Questions)

  • Q1. What is TCP and IP
  • Ans. 

    TCP (Transmission Control Protocol) and IP (Internet Protocol) are the foundational protocols of the internet.

    • TCP is responsible for establishing and maintaining a reliable connection between two devices.

    • IP is responsible for routing and addressing packets of data across networks.

    • TCP/IP together form the basis of internet communication.

    • Example: When you visit a website, TCP ensures the data packets are delivered in the...

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It allows for code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They c...

  • Answered by AI
  • Q3. What is abstract class
  • Ans. 

    An abstract class is a class that cannot be instantiated and is used as a base for other classes.

    • An abstract class can have abstract methods that must be implemented by its subclasses.

    • It can also have non-abstract methods that can be inherited by its subclasses.

    • An abstract class provides a common interface for its subclasses.

    • It is used to achieve abstraction and provide a blueprint for other classes.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for insightsoftware Software Developer interview:
  • C++
  • Object Oriented Programming
Interview preparation tips for other job seekers - Know your basics from school like polymorphism, etc

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Apr 2023. There were 3 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 tips
Round 2 - Coding Test 

Platform - Mettl
3 Questions of medium level difficulty to do in 2 hours, typically contain concepts like DSA, DP etc.

Round 3 - Technical 

(3 Questions)

  • Q1. What is structure padding?
  • Ans. 

    Structure padding is the insertion of unused bytes between structure members to align them on memory boundaries.

    • Padding is added to ensure that each member of a structure starts at a memory address that is a multiple of its size.

    • Padding is compiler-dependent and can vary between different platforms and architectures.

    • Padding can affect the size of a structure and the performance of the program.

    • Example: struct example { ...

  • Answered by AI
  • Q2. College Project discussion
  • Q3. Form a dictionary from name.
  • Ans. 

    Forming a dictionary from name

    • Create an empty dictionary

    • Iterate through each character in the name

    • Add the character as a key and its frequency as value in the dictionary

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Tell me about yourself, availability, visa-related questions
Round 2 - Coding Test 

Dynamic programming questions, longg time to complete the 2 questions

Round 3 - Group Discussion 

Problem solving : a clock with 3 hands, no numbers written, guess what it is

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

1 hour 3 questions easy to medium leetcode.

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find third largest in an array
  • Ans. 

    Find the third largest string in an array of strings.

    • Sort the array in descending order.

    • Skip the first two elements and return the third element.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

3 hours was the duration of the test. 3 questions were asked

Interview Preparation Tips

Topics to prepare for SOTI Software Developer interview:
  • DSA
Interview preparation tips for other job seekers - You can clear the OA round if you have a good grasp on DSA.

Entrata Interview FAQs

How many rounds are there in Entrata PHP Developer interview?
Entrata interview process usually has 2-3 rounds. The most common rounds in the Entrata interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Entrata PHP 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 Entrata. The most common topics and skills that interviewers at Entrata expect are MySQL, PHP, Javascript, Postgresql and Ajax.
What are the top questions asked in Entrata PHP Developer interview?

Some of the top questions asked at the Entrata PHP Developer interview -

  1. 1 mySql query to fetch reco...read more
  2. basic OOPs concept and cod...read more
  3. basic DSA quest...read more

Tell us how to improve this page.

Entrata PHP Developer Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Mobileum Interview Questions
3.3
 • 37 Interviews
CommVault Interview Questions
3.9
 • 26 Interviews
SOTI Interview Questions
3.3
 • 23 Interviews
Twilio Interview Questions
3.9
 • 23 Interviews
Bentley Systems Interview Questions
4.3
 • 21 Interviews
View all
Entrata PHP Developer Salary
based on 7 salaries
₹4.3 L/yr - ₹10 L/yr
47% more than the average PHP Developer Salary in India
View more details

Entrata PHP Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
326 salaries
unlock blur

₹4.4 L/yr - ₹18.9 L/yr

QA Engineer
162 salaries
unlock blur

₹4 L/yr - ₹7.7 L/yr

Softwaretest Engineer
129 salaries
unlock blur

₹3.4 L/yr - ₹6.7 L/yr

Senior Software Engineer
122 salaries
unlock blur

₹11.8 L/yr - ₹27 L/yr

Senior Engineer
68 salaries
unlock blur

₹7.6 L/yr - ₹25 L/yr

Explore more salaries
Compare Entrata with

AgreeYa Solutions

3.3
Compare

Mobileum

3.3
Compare

Gen

3.9
Compare

Evolent Health International

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