Upload Button Icon Add office photos
Engaged Employer

i

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

i2a Technologies Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 56 Reviews

Filter interviews by

i2a Technologies PHP Developer Interview Questions and Answers

Updated 16 May 2024

i2a Technologies PHP Developer Interview Experiences

1 interview found

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 16 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Asking for last working day of salary expectation
Round 2 - Coding Test 

Coding interview asking some practical questions

Round 3 - Behavioral 

(1 Question)

  • Q1. Some basic questions like education and other

Interview Preparation Tips

Interview preparation tips for other job seekers - Environment is very good but if you are eager to learn new technology please don't apply because they didn't give you chance or they work on old project there is no future for php developer but .net developer have big opportunity.

Interview questions from similar companies

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

(2 Questions)

  • Q1. How do you reverse a list in Python?
  • Ans. 

    To reverse a list in Python, you can use the built-in reverse() method or slicing technique.

    • Use the reverse() method to reverse the list in place: list.reverse()

    • Use slicing to create a new reversed list: reversed_list = list[::-1]

  • Answered by AI
  • Q2. Use the reverse method()
  • Ans. 

    The reverse method() is used to reverse the order of elements in an array.

    • Use the reverse() method on an array to reverse the order of its elements.

    • Example: $arr = [1, 2, 3]; reverse($arr); // Output: [3, 2, 1]

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Customize your resume for each job.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. What is session , cookies
  • Ans. 

    Sessions and cookies are used to store user data on the server and client side respectively.

    • Sessions store user data on the server side

    • Cookies store user data on the client side

    • Sessions are more secure as data is stored on the server

    • Cookies can be used for tracking user behavior or preferences

  • Answered by AI
  • Q2. Can we use git without github
  • Ans. 

    Yes, Git can be used without GitHub for version control and collaboration.

    • Git is a distributed version control system that can be used locally or on a private server.

    • Developers can use Git to track changes, collaborate with team members, and manage code without using GitHub.

    • Git can be used with other remote repositories like Bitbucket or GitLab.

    • Developers can also set up their own Git server for hosting repositories.

    • Gi...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - SCREENING 

(2 Questions)

  • Q1. CLOSURE IN Javascript ?
  • Ans. 

    Closure in JavaScript is a function that has access to its own scope, as well as the outer scope in which it was defined.

    • A closure allows a function to access variables from its outer function even after the outer function has finished executing.

    • Closures are commonly used in event handlers, callbacks, and in functional programming.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFun

  • Answered by AI
  • Q2. Class and ID difference
  • Ans. 

    Class is used to style multiple elements, while ID is used to style a single element.

    • Class can be used multiple times in a document, while ID should be unique

    • Class is denoted by a period (.), ID is denoted by a hash (#)

    • Class can be applied to multiple elements, ID can only be applied to one element

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. System Design question
  • Q2. Leetcode medium question on backtracking

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. They ask me about my previous job description details and education details
  • Q2. About carrier goals
  • Q3. About my responsibility in side the current company
Round 2 - Technical 

(2 Questions)

  • Q1. They ask me about core concept of react js and next js
  • Q2. Ask me about core concepts of mongo Db and Node js
Round 3 - HR 

(1 Question)

  • Q1. They told me about company curriculum, goals and ethics

Interview Preparation Tips

Topics to prepare for HyScaler Junior Software Developer interview:
  • React.Js
  • Node.Js
  • MongoDB
  • Linux
Interview preparation tips for other job seekers - This is one of the most well structured company and they used latest technology to build product and services. Very supportive seniors and Hrs. So i highly recommend for job seekers to work in this company
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is debugging
  • Ans. 

    Debugging is the process of identifying and fixing errors or bugs in software code.

    • Identifying and isolating issues in the code

    • Using tools like breakpoints and print statements to track down bugs

    • Fixing errors to ensure the code runs correctly

    • Testing the code to verify that the bugs have been resolved

  • Answered by AI
  • Q2. How debugging can be achieved
  • Ans. 

    Debugging can be achieved by identifying and fixing errors in the code.

    • Use debugging tools like breakpoints to pause the code execution and inspect variables

    • Review the code logic and look for syntax errors or logical mistakes

    • Utilize logging to track the flow of the program and identify issues

    • Test the code with different inputs to reproduce and isolate the bugs

    • Collaborate with team members to get fresh perspectives on t

  • Answered by AI
  • Q3. Tell me about Yourself

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Find the nearest palindrome number for the given number.
  • Ans. 

    To find the nearest palindrome number for a given number, we can increment or decrement the number until we find a palindrome.

    • Start by checking if the given number is a palindrome. If it is, then it is the nearest palindrome number.

    • If the given number is not a palindrome, increment or decrement the number and check if the new number is a palindrome.

    • Repeat the process until a palindrome number is found. The closest pali...

  • Answered by AI
  • Q2. Find the common prefix for a given list of strings.
  • Ans. 

    Find the common prefix for a given list of strings.

    • Iterate through the characters of the first string and compare with the corresponding characters of other strings.

    • Stop when a mismatch is found or when reaching the end of the shortest string.

    • Return the common prefix found.

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Given a pattern and we need to complete the pattern within 40mins, also allows completing this problem in any language ( c,c++, python, java).

Round 2 - Technical 

(2 Questions)

  • Q1. Went through a technical interview, and was asked to solve some coding questions(4 - 5), and some technical stuff. It is one on one interview.
  • Q2. Also, test our reasoning skills and explanation of an algorithm.
Round 3 - One-on-one 

(1 Question)

  • Q1. Another technical round.
Round 4 - HR 

(2 Questions)

  • Q1. This is the final phase of the recruitment
  • Q2. Tell me about your family, friends, and intermediate.
  • Ans. 

    I have a close-knit family and a supportive group of friends. I also have intermediate skills in various programming languages.

    • My family is very important to me and we have a strong bond.

    • I have a few close friends who have always been there for me.

    • In terms of programming, I have intermediate skills in languages like Java, Python, and JavaScript.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Snovasys Junior Software Developer interview:
  • Design Patterns
  • Python
  • C
  • Java
  • Data Structures
Interview preparation tips for other job seekers - Prepare for patterns, and revise the basics of your proposed programming language.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Referral and was interviewed in Feb 2023. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a front end developer with 5 years of experience in creating user-friendly and visually appealing websites.

    • 5 years of experience in front end development

    • Proficient in HTML, CSS, and JavaScript

    • Strong understanding of responsive design principles

    • Experience with front end frameworks like React and Angular

    • Ability to collaborate with designers and backend developers to implement website features

    • Portfolio showcasing pre

  • Answered by AI
  • Q2. Why do you want to join Webdew
  • Ans. 

    I want to join Webdew because of their reputation for innovative web development and their focus on creating user-friendly experiences.

    • Webdew has a strong track record of delivering cutting-edge web development projects.

    • I am impressed by their portfolio of user-friendly websites and applications.

    • I believe joining Webdew will provide me with opportunities to learn and grow as a front-end developer.

    • Their company culture ...

  • Answered by AI
  • Q3. What were your day-to-day responsibilities at your last job?
  • Ans. 

    As a front end developer, my day-to-day responsibilities at my last job included designing and developing user interfaces, collaborating with the design team, and ensuring cross-browser compatibility.

    • Designing and developing user interfaces

    • Collaborating with the design team

    • Ensuring cross-browser compatibility

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I advise others for HR rounds to be calm and relaxed and patiently give the answers to the questions asked by HR.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you reverse a list in Python?
  • Ans. 

    To reverse a list in Python, you can use the built-in reverse() method or slicing technique.

    • Use the reverse() method to reverse the list in place: list.reverse()

    • Use slicing to create a new reversed list: reversed_list = list[::-1]

  • Answered by AI
  • Q2. Use the reverse method()
  • Ans. 

    The reverse method() is used to reverse the order of elements in an array.

    • Use the reverse() method on an array to reverse the order of its elements.

    • Example: $arr = [1, 2, 3]; reverse($arr); // Output: [3, 2, 1]

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Customize your resume for each job.

i2a Technologies Interview FAQs

How many rounds are there in i2a Technologies PHP Developer interview?
i2a Technologies interview process usually has 3 rounds. The most common rounds in the i2a Technologies interview process are HR, Coding Test and Behavioral.
How to prepare for i2a Technologies 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 i2a Technologies. The most common topics and skills that interviewers at i2a Technologies expect are CSS, Javascript, PHP, Angular and Front End.

Tell us how to improve this page.

i2a Technologies PHP Developer Salary
based on 4 salaries
₹3.6 L/yr - ₹7.8 L/yr
48% more than the average PHP Developer Salary in India
View more details

i2a Technologies PHP Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

5.0

Work-Life balance

3.0

Salary & Benefits

3.0

Job Security

3.0

Company culture

3.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
SEO Executive
24 salaries
unlock blur

₹1.8 L/yr - ₹3.2 L/yr

Content Writer
19 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Travel Sales Consultant
5 salaries
unlock blur

₹4.8 L/yr - ₹6.8 L/yr

Senior Travel Consultant
5 salaries
unlock blur

₹5.4 L/yr - ₹6.5 L/yr

Senior SEO Executive
5 salaries
unlock blur

₹3 L/yr - ₹3.9 L/yr

Explore more salaries
Compare i2a Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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