Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Lee & Nee Softwares Exports Team. If you also belong to the team, you can get access from here

Lee & Nee Softwares Exports Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Lee & Nee Softwares Exports PHP Developer Interview Questions and Answers

Updated 6 Aug 2022

Lee & Nee Softwares Exports PHP Developer Interview Experiences

1 interview found

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 - Telephone round 

(1 Question)

  • Q1. Ask basic questions like introduce yourself and if you have experience then ask questions related to you experience or ask some basic php and sql database questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. This round held will be in office. Senior developer will take your interview. He ask questions related to php and database.if you are fresher then ask questions like how to create table, ask questions abou...
Round 4 - HR 

(1 Question)

  • Q1. HR will ask some basic question like salary expectation. Your interest area or domain. Your notice period. Period CTC, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basic knowledge of php and database.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Lee & Nee Softwares Exports?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

9 Questions

  • Q1. Questions related to the work done at my previous company
  • Q2. Find if a given directed graph is cyclic or not
  • Ans. 

    To check if a directed graph is cyclic or not

    • Use Depth First Search (DFS) algorithm to traverse the graph

    • Maintain a visited set to keep track of visited nodes

    • Maintain a recursion stack to keep track of nodes in the current DFS traversal

    • If a node is visited and is already in the recursion stack, then the graph is cyclic

    • If DFS traversal completes without finding a cycle, then the graph is acyclic

  • Answered by AI
  • Q3. You have a stream of bytes from which you can read one byte at a time. You only have enough space to store one byte. After processing those bytes, you have to return a random byte. Note: The probability of...
  • Ans. 

    Return a random byte from a stream of bytes with equal probability.

    • Create a variable to store the count of bytes read

    • Create a variable to store the current random byte

    • For each byte read, generate a random number between 0 and the count of bytes read

    • If the random number is 0, store the current byte as the random byte

    • Return the random byte

  • Answered by AI
  • Q4. Find if a given Binary Tree is BST or not
  • Ans. 

    Check if a binary tree is a binary search tree or not.

    • Traverse the tree in-order and check if the values are in ascending order.

    • For each node, check if its value is greater than the maximum value of its left subtree and less than the minimum value of its right subtree.

    • Use recursion to check if all nodes in the tree satisfy the above condition.

  • Answered by AI
  • Q5. Devise an algorithm to determine the Nth-to-Last element in a singly linked list of unknown length. If N = 0, then your algorithm must return the last element. You should parse the list only once
  • Ans. 

    Algorithm to find Nth-to-Last element in a singly linked list of unknown length

    • Traverse the list and maintain two pointers, one at the beginning and one at Nth node from beginning

    • Move both pointers simultaneously until the second pointer reaches the end of the list

    • The first pointer will be pointing to the Nth-to-Last element

    • If N=0, return the last element

    • Parse the list only once

  • Answered by AI
  • Q6. Given an array of integers, print all possible permutations. Also explain your approach
  • Ans. 

    Print all possible permutations of an array of integers

    • Use recursion to swap elements and generate permutations

    • Start with the first element and swap it with each subsequent element

    • Repeat the process for the remaining elements

    • Stop when all elements have been swapped with the first element

    • Print each permutation as it is generated

  • Answered by AI
  • Q7. Design a Stack DS that also prints in O(1) the minimum element you pushed in the stack
  • Ans. 

    Design a stack that prints the minimum element pushed in O(1)

    • Use two stacks, one for storing elements and another for storing minimums

    • When pushing an element, compare it with the top of minimum stack and push the smaller one

    • When popping an element, pop from both stacks

    • To get the minimum element, just return the top of minimum stack

  • Answered by AI
  • Q8. Given a linked list with loop, how would you find the starting point of the loop ?
  • Ans. 

    To find the starting point of a loop in a linked list, use Floyd's cycle-finding algorithm.

    • Use two pointers, one moving at twice the speed of the other.

    • When they meet, move one pointer to the head of the list and keep the other at the meeting point.

    • Move both pointers one step at a time until they meet again, which is the starting point of the loop.

  • Answered by AI
  • Q9. Find a number a matrix mat[m][n] where all the rows and columns are sorted non-decreasingly. What will be the complexity of the solution
  • Ans. 

    To find a number in a matrix where all rows and columns are sorted non-decreasingly. Complexity of the solution.

    • Use binary search to find the number in each row and column

    • Start from the top-right corner or bottom-left corner to optimize search

    • Time complexity: O(m log n) or O(n log m) depending on the starting corner

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: Na

Skills evaluated in this interview

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
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good and moderate questions

Round 2 - Technical 

(1 Question)

  • Q1. Learn the core basic and be prepare for everything
Round 3 - HR 

(1 Question)

  • Q1. Really good response and nice people
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were 50 question out of which if you score 20 you were passed out to next round, No negative markings.

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. What is the level of clarity regarding the position for which the company is hiring?
  • Ans. 

    Clarity about the position involves understanding responsibilities, expectations, and team dynamics.

    • The job description outlines key responsibilities, such as project management and team coordination.

    • Expectations include meeting deadlines and fostering team collaboration, which are crucial for success.

    • Understanding the team dynamics helps in identifying how the role fits within the larger organizational structure.

    • Examp...

  • Answered by AI
  • Q2. Are you open to relocating?
  • Ans. 

    Yes, I am open to relocating for the right opportunity that aligns with my career goals and personal growth.

    • Relocation can provide exposure to new markets and diverse teams, enhancing my professional experience.

    • I have previously relocated for a job, which helped me develop adaptability and resilience.

    • I believe that working in different locations can broaden my perspective and improve my problem-solving skills.

    • I am will...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Print palindrome
Binary search

Round 2 - Technical 

(1 Question)

  • Q1. Java, spring boot and Micro service related questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy it was having 30 questions

Round 2 - Coding Test 

Coding was medium leet code questions

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Assignment 

Develop a UI screen with 10 fields on it.

Round 3 - Technical 

(1 Question)

  • Q1. Mongoose Framework, SQL - Store Procedures, Triggers, Views, Crystal Reports,
Round 4 - One-on-one 

(1 Question)

  • Q1. Offer letter discussion. Joining date discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared technically. More on customizations, migrations from one version to another of from on prem to cloud.
Round 1 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my skills, experience, and market standards for this role.

    • Research industry standards: For example, software developers in my region typically earn between $80,000 and $120,000.

    • Consider my experience: With 5 years in full-stack development, I believe a salary towards the higher end is justified.

    • Factor in company size: Larger companies often offer better compensation packages compa...

  • Answered by AI
  • Q2. Share details of your previous job.
  • Ans. 

    I worked as a Software Developer at XYZ Corp, focusing on web applications and improving user experience through innovative solutions.

    • Developed and maintained web applications using JavaScript, React, and Node.js.

    • Collaborated with cross-functional teams to gather requirements and deliver projects on time.

    • Implemented RESTful APIs to enhance data retrieval and improve application performance.

    • Conducted code reviews and pr...

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more responsibilities, such as leading projects.

    • Seeking a better cultural fit: My current workplace has a different approach to collaboration, and I'm looking for a team that values open communication.

    • Interest in new technologies: I'm eage...

  • Answered by AI
  • Q4. Tell me about yourself.
  • Ans. 

    I'm a passionate software developer with a strong background in full-stack development and a love for problem-solving.

    • Experience in developing web applications using React and Node.js.

    • Worked on a team project that improved application performance by 30%.

    • Strong understanding of algorithms and data structures, demonstrated in coding competitions.

    • Enjoy collaborating with cross-functional teams to deliver high-quality soft...

  • Answered by AI
Round 2 - Aptitude Test 
Round 3 - Technical 

(1 Question)

  • Q1. Explain technical terms.
  • Ans. 

    Technical terms are words or phrases used in a specific field of study or industry that have a particular meaning.

    • Technical terms are used to communicate complex ideas and concepts in a concise manner.

    • They are often specific to a particular field or industry, such as programming or engineering.

    • Examples of technical terms include API, algorithm, database, and encryption.

    • It is important to understand technical terms in o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while interviewing with hr or manager.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Why do you want to join us?
  • Ans. 

    I am impressed by your company's reputation for innovation and commitment to employee development.

    • Impressed by company's reputation for innovation

    • Commitment to employee development

    • Excited about potential growth opportunities

  • Answered by AI

Lee & Nee Softwares Exports Interview FAQs

How many rounds are there in Lee & Nee Softwares Exports PHP Developer interview?
Lee & Nee Softwares Exports interview process usually has 4 rounds. The most common rounds in the Lee & Nee Softwares Exports interview process are Resume Shortlist, One-on-one Round and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

MapmyIndia Interview Questions
3.6
 • 26 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Upland Software Interview Questions
4.6
 • 15 Interviews
CyberArk Interview Questions
3.5
 • 15 Interviews
HostBooks Interview Questions
2.8
 • 12 Interviews
View all
Digital Marketing Executive
19 salaries
unlock blur

₹1.5 L/yr - ₹3.2 L/yr

Software Developer
16 salaries
unlock blur

₹2.4 L/yr - ₹4.8 L/yr

Web Designer
11 salaries
unlock blur

₹2.4 L/yr - ₹4.2 L/yr

Business Development Manager
9 salaries
unlock blur

₹3.6 L/yr - ₹4.2 L/yr

SEO Executive
8 salaries
unlock blur

₹1.2 L/yr - ₹2.5 L/yr

Explore more salaries
Compare Lee & Nee Softwares Exports with

Yalamanchili Software Exports

3.2
Compare

MapmyIndia

3.6
Compare

Amity Software Limited

4.2
Compare

HostBooks

2.8
Compare
write
Share an Interview