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

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Can we call future method from batch class
  • Ans. 

    Yes, future methods can be called from a batch class in Salesforce.

    • Future methods can be called from batch classes to perform asynchronous processing.

    • This can be useful for offloading long-running tasks to future methods to avoid hitting governor limits.

    • Example: Calling a future method from a batch class to update records in Salesforce asynchronously.

  • Answered by AI
  • Q2. What's the use of @track decorator. Is it mandatory to explicitly use it? If yes, for which use case?
  • Ans. 

    The @track decorator in Salesforce is used to track changes to a property in a Lightning web component.

    • Used to make a property reactive and trigger re-renders when its value changes

    • Not mandatory but recommended for properties that need to be reactive

    • Use @track when you want changes to a property to be reflected in the UI

  • Answered by AI
  • Q3. When does APEX CPU Limit Exceeded error happens. What's the best practice to avoid getting this error?
  • Ans. 

    APEX CPU Limit Exceeded error happens when code consumes too much CPU time. Best practices include optimizing code, reducing loops, and using asynchronous processing.

    • Avoid using nested loops and optimize code for better performance

    • Use asynchronous processing like @future or Queueable to offload CPU intensive tasks

    • Limit the use of SOQL queries inside loops to reduce CPU consumption

  • Answered by AI
  • Q4. When does Mixed DML Exception occurs?
  • Ans. 

    Mixed DML Exception occurs when DML operations are performed on setup and non-setup objects in a single transaction.

    • Occurs when DML operations are performed on both setup and non-setup objects in a single transaction

    • Setup objects include User, Profile, PermissionSet, etc.

    • Non-setup objects include custom objects, standard objects like Account, Contact, etc.

  • Answered by AI
  • Q5. Debug the following code: var a=10; function abc() { console.log(a); var a=2; } abc();
  • Ans. 

    The code will output 'undefined' because variable 'a' is hoisted within the function.

    • Variable 'a' is hoisted to the top of the function scope, so when 'console.log(a)' is called, 'a' is undefined.

    • To fix this, move the declaration of 'var a=2;' above the 'console.log(a);' statement.

  • Answered by AI
  • Q6. Write a SOQL query to fetch the values of description field from the Account. Why does "the description field cannot be filtered in the query call"?
  • Ans. 

    SOQL query to fetch description field from Account and reason for inability to filter

    • SOQL query: SELECT Description FROM Account

    • Description field is not filterable because it is a long text field

    • Long text fields cannot be filtered in SOQL queries

  • Answered by AI

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.

People are getting interviews through

based on 1 Impelsys interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small 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
Apisero Interview Questions
4.3
 • 72 Interviews
Aptara Interview Questions
3.3
 • 61 Interviews
View all
Senior Software Engineer
192 salaries
unlock blur

₹6.2 L/yr - ₹22.5 L/yr

Software Engineer
175 salaries
unlock blur

₹4.2 L/yr - ₹14 L/yr

Softwaretest Engineer
47 salaries
unlock blur

₹2.4 L/yr - ₹12.6 L/yr

Technical Lead
46 salaries
unlock blur

₹12.2 L/yr - ₹35 L/yr

Software Developer
42 salaries
unlock blur

₹3.8 L/yr - ₹12.7 L/yr

Explore more salaries
Compare Impelsys with

Hurix Systems

3.7
Compare

Aptara

3.3
Compare

Serosoft Solutions

3.5
Compare

Magic Edtech

3.1
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