Upload Button Icon Add office photos

Filter interviews by

Zappi PHP Developer Interview Questions and Answers

Updated 28 Aug 2021

6 Interview questions

A PHP Developer was asked
Q. What is the difference between JavaScript and jQuery?
Ans. 

JavaScript is a programming language used for client-side scripting, while jQuery is a library built on top of JavaScript.

  • JavaScript is a programming language that allows you to create dynamic web content and interact with the user.

  • jQuery is a library that simplifies JavaScript programming by providing pre-written functions and methods.

  • JavaScript is a core language, while jQuery is a framework built on top of Java...

A PHP Developer was asked
Q. What is the difference between echo and print in PHP?
Ans. 

Echo and print are both used to output data in PHP, but echo is slightly faster and can take multiple arguments.

  • Echo is a language construct, while print is a function.

  • Echo does not return a value, while print returns 1.

  • Echo can output multiple strings separated by commas, while print can only output one string.

  • Echo is generally preferred for performance reasons.

PHP Developer Interview Questions Asked at Other Companies

asked in Infotech
Q1. What is PHP? PHP (Hypertext Preprocessor) is a server-side script ... read more
Q2. How can we report errors in the log file while working on a core ... read more
asked in Impelsys
Q3. What are the different types of errors in PHP?
Q4. Given an array [1,2,3,4,5], without using array functions, print ... read more
Q5. Write a query to get the 4th highest salary from the employees ta ... read more
A PHP Developer was asked
Q. What is the difference between GET and POST methods?
Ans. 

GET and POST are HTTP methods used to send data to a server. GET appends data to the URL while POST sends it in the request body.

  • GET is used for retrieving data from a server while POST is used for submitting data to a server.

  • GET appends data to the URL as query parameters while POST sends it in the request body.

  • GET requests can be bookmarked and cached while POST requests cannot.

  • GET requests have length restricti...

A PHP Developer was asked
Q. What is an index in MySQL?
Ans. 

An index in MySQL is a data structure that improves the speed of data retrieval operations on a database table.

  • Indexes are created on one or more columns of a table to allow for faster searching and sorting of data.

  • They work by creating a separate data structure that stores the values of the indexed columns in a sorted manner.

  • This allows the database engine to quickly locate the desired data without having to scan...

A PHP Developer was asked
Q. What are sessions and cookies?
Ans. 

Sessions and cookies are used to store and retrieve data in web applications.

  • Sessions are used to store data on the server side and are identified by a unique session ID.

  • Cookies are used to store data on the client side and are stored as small text files.

  • Sessions are more secure as the data is stored on the server, while cookies can be manipulated by the client.

  • Sessions are typically used to store sensitive inform...

A PHP Developer was asked
Q. Functions in mysql
Ans. 

Functions in MySQL are predefined or user-defined routines that perform specific tasks.

  • MySQL functions can be used to manipulate data, perform calculations, and format output.

  • There are various types of functions in MySQL, such as string functions, numeric functions, date and time functions, etc.

  • Examples of MySQL functions include CONCAT(), SUBSTRING(), COUNT(), AVG(), NOW(), etc.

Zappi PHP Developer Interview Experiences

1 interview found

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 28 Aug 2021

I applied via Naukri.com and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. Tell me about yourself and about your job profile
  • Ans. I am Subhabrata Sarkar. I had done mca and Bsc . I had an experience of 5 years working in bpo. I had an experience as a senior process executive in infosys bpo. Currently I am working in Zappi pvt ltd as a php developer. I had skill on php,Mysql,Js,Css,Html. I had developed projects user management system. It maintains database of users. It has login/logout functionality. It has dashboard which gives the listing of us...
  • Answered Anonymously
  • Q2. Tell me about your roles and responsibilties in your company
  • Q3. Why you want to switch the current company
  • Q4. Why you switch from bpo job to It
  • Ans. 

    I switched from a BPO job to IT to pursue my passion for technology and seek better career growth opportunities.

    • Passion for Technology: I have always been fascinated by technology and programming, which motivated me to learn PHP and web development.

    • Career Growth: The IT sector offers more opportunities for advancement compared to BPO, where career progression can be limited.

    • Skill Development: Transitioning to IT allowe...

  • Answered by AI
  • Q5. Technical questions:- difference between echo and print
  • Ans. 

    Echo and print are both used to output data in PHP, but echo is slightly faster and can take multiple arguments.

    • Echo is a language construct, while print is a function.

    • Echo does not return a value, while print returns 1.

    • Echo can output multiple strings separated by commas, while print can only output one string.

    • Echo is generally preferred for performance reasons.

  • Answered by AI
  • Q6. Array types and functions
  • Ans. 

    Array types and functions

    • PHP arrays can store multiple values of different types

    • Arrays can be indexed numerically or with strings

    • Common array functions include count(), sort(), and array_push()

    • Example: $fruits = ['apple', 'banana', 'orange'];

  • Answered by AI
  • Q7. Difference between get and post
  • Ans. 

    GET and POST are HTTP methods used to send data to a server. GET appends data to the URL while POST sends it in the request body.

    • GET is used for retrieving data from a server while POST is used for submitting data to a server.

    • GET appends data to the URL as query parameters while POST sends it in the request body.

    • GET requests can be bookmarked and cached while POST requests cannot.

    • GET requests have length restrictions w...

  • Answered by AI
  • Q8. Difference between javascript and jquery
  • Ans. 

    JavaScript is a programming language used for client-side scripting, while jQuery is a library built on top of JavaScript.

    • JavaScript is a programming language that allows you to create dynamic web content and interact with the user.

    • jQuery is a library that simplifies JavaScript programming by providing pre-written functions and methods.

    • JavaScript is a core language, while jQuery is a framework built on top of JavaScrip...

  • Answered by AI
  • Q9. What is session and cookies
  • Ans. 

    Sessions and cookies are used to store and retrieve data in web applications.

    • Sessions are used to store data on the server side and are identified by a unique session ID.

    • Cookies are used to store data on the client side and are stored as small text files.

    • Sessions are more secure as the data is stored on the server, while cookies can be manipulated by the client.

    • Sessions are typically used to store sensitive information...

  • Answered by AI
  • Q10. What is index in mysql
  • Ans. 

    An index in MySQL is a data structure that improves the speed of data retrieval operations on a database table.

    • Indexes are created on one or more columns of a table to allow for faster searching and sorting of data.

    • They work by creating a separate data structure that stores the values of the indexed columns in a sorted manner.

    • This allows the database engine to quickly locate the desired data without having to scan the ...

  • Answered by AI
  • Q11. Functions in mysql
  • Ans. 

    Functions in MySQL are predefined or user-defined routines that perform specific tasks.

    • MySQL functions can be used to manipulate data, perform calculations, and format output.

    • There are various types of functions in MySQL, such as string functions, numeric functions, date and time functions, etc.

    • Examples of MySQL functions include CONCAT(), SUBSTRING(), COUNT(), AVG(), NOW(), etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for interview. Watch videos of interviews. be confident in interview. Practice mock interview.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Zappi?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Approached by Company and was interviewed before May 2018. There were 6 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. This is face to face interview... They are observing our behaviour... Attitude... Etc
  • Q2. Introduce u r self....
  • Ans. 

    I am a dedicated and hardworking individual with a passion for learning and growth.

    • I have a Bachelor's degree in Business Administration from XYZ University.

    • I have 3 years of experience working in marketing and sales roles.

    • I am proficient in Microsoft Office Suite and have strong communication skills.

    • I am a team player and enjoy collaborating with others to achieve common goals.

  • Answered by AI
  • Q3. U r carrier objections
  • Ans. 

    My career objectives focus on continuous growth, contributing to team success, and making a positive impact in my field.

    • Aim to develop expertise in my field, such as becoming a certified project manager.

    • Seek leadership opportunities to guide and mentor junior team members.

    • Aspire to work on innovative projects that challenge my skills and creativity.

    • Desire to contribute to a company's mission, like improving customer sa...

  • Answered by AI
  • Q4. About TCS
  • Q5. Why should u select TCS
  • Ans. 

    TCS is a global leader in IT services with a strong reputation for innovation and client satisfaction.

    • TCS has a proven track record of delivering high-quality services to clients worldwide.

    • TCS offers a wide range of opportunities for career growth and development.

    • TCS values diversity and inclusion, creating a supportive work environment for employees.

    • TCS invests in cutting-edge technologies and training programs to kee...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: Any kind of topic u cn select... Sales, accounts, service

Round: Test
Experience: Aptitude test... Mathematic and problem solving... General knowledge is very important

Round: Telephonic
Experience: This is final round... BH directly interact with us...

General Tips: Be confident... Be clam.... Keep smiling face... That is the way to win
Skills: Communication, Body Language, Leadership, Presentation Skills, Time Management
Duration: <1 week

PHP Developer Interview Questions Asked at Other Companies

asked in Infotech
Q1. What is PHP? PHP (Hypertext Preprocessor) is a server-side script ... read more
Q2. How can we report errors in the log file while working on a core ... read more
asked in Impelsys
Q3. What are the different types of errors in PHP?
Q4. Given an array [1,2,3,4,5], without using array functions, print ... read more
Q5. Write a query to get the 4th highest salary from the employees ta ... read more

I applied via Naukri.com and was interviewed before Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Talk about any topic for atleast 3mins
  • Ans. 

    Exploring the impact of technology on education and how it shapes learning experiences for students today.

    • Technology enhances accessibility to educational resources, e.g., online courses from platforms like Coursera.

    • Interactive tools like Kahoot! and Quizlet make learning engaging and fun for students.

    • Virtual classrooms enable remote learning, allowing students to connect globally, especially during the pandemic.

    • Artifi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with any topic and talk confidently with out stoping.

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy logical questions
basic quant

Round 2 - Coding Test 

Easy level coding questions
Counting frequency of alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basics of javascript
Hoisting

Interview Questionnaire 

1 Question

  • Q1. How to use multiple dispatch in redux?
  • Ans. 

    Multiple dispatch is not a feature of Redux. It can be achieved using middleware or custom logic.

    • Middleware like redux-thunk or redux-saga can be used to dispatch multiple actions based on a single action.

    • Custom logic can be implemented in the reducer to handle multiple actions based on a single action type.

    • For example, a single 'ADD_ITEM' action can trigger multiple actions like 'UPDATE_TOTAL', 'UPDATE_HISTORY', etc.

    • M...

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?
  • Ans. 

    Faced various technical challenges, including system integration and performance optimization, which I successfully navigated through strategic solutions.

    • Integration of legacy systems with modern applications: I utilized APIs and middleware to ensure seamless data flow.

    • Performance bottlenecks in a web application: Implemented caching strategies and optimized database queries, resulting in a 40% speed increase.

    • Debugging...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.
Are these interview questions helpful?

I applied via Referral and was interviewed before Jan 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked about my past experience and few questions on People's Management

Interview Preparation Tips

Interview preparation tips for other job seekers - First and foremost a candidate should have Confidence on what he is talking about. One should have good understanding on what we have updated in our resume. Because that creates the first impression on the person. Most of the times we were asked on points updated in our resume. Good knowledge on the products and services on the role which we have applied for and few questions about Past experience.

I applied via Walk-in and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.Technical Ques(OOPS Concept)and 2. Area of Interest 3. About Company 4. more

Interview Preparation Tips

Interview preparation tips for other job seekers - Hello Folks,
Sharing some tips while facing Interview Assessment or GD Round Assessment.
1. Be Confident always give the answer what they ask for, Never connect your answer with different topic.
2. Always go through Company Portal or wiki about their Operation & Function.
3. Always have positive vibes that whatever yes or No, You will surely gain something.
All the Best..!!

I applied via Naukri.com and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain me about yourself
  • Q2. Just be brief don't bore them

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident.

Zappi Interview FAQs

What are the top questions asked in Zappi PHP Developer interview?

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

  1. Technical questions:- difference between echo and pr...read more
  2. what is index in my...read more
  3. Difference between javascript and jqu...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all
Compare Zappi with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview