Upload Button Icon Add office photos

Filter interviews by

Impelsys Senior PHP Developer Interview Questions, Process, and Tips

Updated 15 Sep 2020

Impelsys Senior PHP Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Design patterns & Explain Them.
  • Ans. 

    Design patterns are reusable solutions to common software development problems.

    • Design patterns provide proven solutions to recurring problems in software development.

    • They help in creating code that is more flexible, reusable, and maintainable.

    • Some common design patterns include Singleton, Factory, Observer, and Decorator.

    • Singleton pattern ensures that only one instance of a class is created.

    • Factory pattern provides a w...

  • Answered by AI
  • Q2. Write php program to print *(stars) in pyramid shape
  • Ans. 

    PHP program to print *(stars) in pyramid shape

    • Use nested for loops to print the pyramid shape

    • The outer loop controls the number of rows

    • The inner loop controls the number of stars to print in each row

    • Use a combination of spaces and stars to create the pyramid shape

  • Answered by AI
  • Q3. Get image (blob) from db & show in php view page
  • Ans. 

    To display an image from a database in a PHP view page, retrieve the image as a blob and output it with appropriate headers.

    • Retrieve the image data from the database as a blob.

    • Set the appropriate content-type header for the image format.

    • Output the image data to the response body.

  • Answered by AI
  • Q4. Some basic php questions
  • Q5. Php program to sort array
  • Ans. 

    PHP program to sort array of strings

    • Use the built-in sort() function

    • Pass the array as argument to the sort() function

    • Use the SORT_STRING flag to sort the array as strings

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare array functions, strings functions, some basic coding programs, oops concepts, mysql basics etc

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Solid Principle, Design Patterns,
  • Q2. React sharing data btw siblings without any state management.
  • Q3. NodeJs is single threaded then why it feels concurrent?
Round 2 - Technical 

(3 Questions)

  • Q1. Questions related micro services
  • Q2. Message queue related questions
  • Q3. NodeJs related questions: Event loop

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare NodeJs in-depth.
Mention things in your resume that you actually know and worked on. They will ask questions from your experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are Django signals, and what is their application in web development?
  • Ans. 

    Django signals are a way for decoupled applications to get notified when certain actions occur elsewhere in the application.

    • Django signals allow certain senders to notify a set of receivers when some action has taken place.

    • They are used for decoupling various components of a web application.

    • Signals are useful for executing code based on certain events, such as user login, object creation, etc.

    • Example: Sending an email ...

  • Answered by AI
  • Q2. What are Django generic views?
  • Ans. 

    Django generic views are pre-built views provided by Django to simplify common tasks like displaying data from a database.

    • Django generic views help reduce code duplication by providing ready-to-use views for common tasks like displaying objects from a database.

    • They are generic in nature and can be easily customized to suit specific requirements.

    • Examples include ListView for displaying a list of objects, DetailView for ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are conducting three rounds of interviews, with coding required in each round, and tasks are assigned during the interview.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Api to update employees details
  • Ans. 

    Create an API endpoint to update employee details.

    • Use PUT method to update employee details

    • Validate input data before updating

    • Return success message or error message accordingly

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is solid principple
  • Ans. 

    SOLID is a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses with...

  • Answered by AI
  • Q2. Whats are oops in c#
  • Ans. 

    Object-oriented programming concepts in C#

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability for objects to take on multiple forms

    • Abstraction: hiding the complex implementation details and showing only the necessary features

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude,reasoning,verbal,C language,Java,C++

Round 2 - Technical 

(2 Questions)

  • Q1. What is interface in JAVA
  • Q2. Explain OOPS in JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How to create restfull api
  • Ans. 

    To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.

    • Define endpoints for different resources (e.g. /users, /products)

    • Use HTTP methods (GET, POST, PUT, DELETE) for CRUD operations

    • Handle requests and responses in JSON format

    • Follow REST principles like statelessness, uniform interface, and client-server architecture

  • Answered by AI
  • Q2. How to do pagination in jpa
  • Ans. 

    Pagination in JPA allows fetching a subset of results from a query.

    • Use the setFirstResult() method to set the starting index of the results to retrieve

    • Use the setMaxResults() method to set the maximum number of results to retrieve

    • Combine setFirstResult() and setMaxResults() to implement pagination

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Oop concept, Multithread, String

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for sql as well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project based backend and frontend
  • Q2. How to connect to backend
  • Ans. 

    To connect to the backend, you can use APIs, database connections, or web services.

    • Use APIs to send and receive data between the frontend and backend

    • Establish database connections to retrieve and store data

    • Utilize web services for communication between different systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for project

Skills evaluated in this interview

Impelsys Interview FAQs

What are the top questions asked in Impelsys Senior PHP Developer interview?

Some of the top questions asked at the Impelsys Senior PHP Developer interview -

  1. get image (blob) from db & show in php view p...read more
  2. write php program to print *(stars) in pyramid sh...read more
  3. Design patterns & Explain Th...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
NTT Data Interview Questions
3.9
 • 599 Interviews
Apisero Interview Questions
4.3
 • 72 Interviews
View all
Software Engineer
200 salaries
unlock blur

₹4 L/yr - ₹13.7 L/yr

Senior Software Engineer
174 salaries
unlock blur

₹6.2 L/yr - ₹23 L/yr

Softwaretest Engineer
47 salaries
unlock blur

₹2.4 L/yr - ₹12.6 L/yr

Technical Lead
45 salaries
unlock blur

₹12.2 L/yr - ₹37 L/yr

Senior QA Engineer
42 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Explore more salaries
Compare Impelsys with

Hurix Systems

3.6
Compare

Aptara

3.3
Compare

Serosoft Solutions

3.5
Compare

Magic Edtech

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