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.

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

Interview Questionnaire 

2 Questions

  • Q1. There were two technical rounds followed by a managerial and hr round.The first round was highly technical and questions were asked on string data structures, binary search trees and maps.There where sever...
  • Q2. Managerial round will be a formal discussion with the interviewer regarding the role,what roles you have worked in your previous organization, questions might be asked based on your resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to have some practice of common data structures and algorithms used. From framework side you will asked questions based on your resume and role. And best of luck

I applied via Referral and was interviewed before Oct 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell Us about yourself?
  • Ans. I am from Kolkata. I have convey about my Educational Background to Interviewer.
  • Answered by Tanay Lakshman
  • Q2. Tell us about Coalnet Architecture of MMS Module?
  • Ans. 

    Coalnet Architecture of MMS Module is a system for managing and monitoring coal mines.

    • Coalnet Architecture is designed to manage and monitor coal mines.

    • It includes modules for tracking production, equipment maintenance, and safety.

    • The MMS Module specifically focuses on maintenance management.

    • It allows for scheduling and tracking of maintenance tasks, as well as inventory management.

    • The architecture is scalable and can ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The documentation got approved by Samuel Of Oracle Australia Office.I was interviewed by Samuel by Telephone.Outcome will be Given in Email.It consists of 15 minutes technical interview.

Interview Questionnaire 

1 Question

  • Q1. Program Based on Java String Operations. Print concatenation of Zig Zag string from a row
  • Ans. 

    Program to concatenate Zig Zag string from a row using Java String Operations.

    • Use StringBuilder to efficiently concatenate strings

    • Use loops to traverse the rows and columns of the zig zag pattern

    • Use conditional statements to determine the direction of traversal

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

2 Questions

  • Q1. What is web service flow
  • Ans. 

    Web service flow is the sequence of steps involved in the communication between a client and a server over the internet.

    • Web service flow involves a client sending a request to a server

    • The server processes the request and sends a response back to the client

    • The response can be in various formats such as XML, JSON, or plain text

    • Web service flow can be synchronous or asynchronous

    • Examples of web services include RESTful API

  • Answered by AI
  • Q2. How to check ports in Solaris or linux machine
  • Ans. 

    To check ports in Solaris or Linux machine, use the netstat command.

    • Open the terminal and type 'netstat -an' to display all open ports.

    • Use 'netstat -an | grep ' to check if a specific port is open.

    • To check listening ports, use 'netstat -an | grep LISTEN'.

    • For Solaris, use 'netstat -an | grep .' instead of '| grep '.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Total pathetic experience. What job description is given to you, doesn't matters because you won't be asked for that. Your resume will get shortlisted and then it doesn't matter what u have covered up in your career path, because interview rounds will consist of questions out of your scope. Your resume doesn't needs to be shortlisted at first end if it doesn't suit thier needs. HR people, they are on another level. You share your resume to them, and they will never ever reply back to you. Not a single HR, but it seems everyone has same culture. You keep trying to connect them for support. But they will just keep finding smarter ways to avoid.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Spring Collections Difference between list and set What is sorted mean in hashed set java Serialization Exceptions How can you give an exception to caller method Unix- how to move a folder without g...
  • Ans. 

    Interview questions for Software Developer related to Spring, Collections, Serialization, Exceptions, Unix, Annotations, Json, Build tools, Restful services, and more.

    • List and Set are both collection interfaces in Java. List allows duplicates and maintains insertion order while Set doesn't allow duplicates and doesn't maintain any order.

    • Sorted in Hashed Set means that the elements are stored in a sorted order based on ...

  • Answered by AI

Skills evaluated in this interview

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

Do Arrrays String Questions Well And Solve All The Test Cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't Worry Keep Pushing Your Limits You Will Get A Good Job
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

30min duration simple questions

Round 2 - Coding Test 

Basic array 2 coding questions

Round 3 - Technical 

(5 Questions)

  • Q1. Introduce yorself
  • Q2. Explain about final year project
  • Q3. Github link for project
  • Q4. What is oops in java
  • Q5. What is polymorphism explain with examples
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2022. There were 3 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. 1.Exception handling 2.STL 3.linked lists 4.Virtual functions
  • Q2. 2.STL related questions
Round 3 - HR 

(1 Question)

  • Q1. 1 .few basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is not that tough only should have clear concepts .
If your concepts are not clear you will never pass here

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

Oracle Interview Questions
3.7
 • 855 Interviews
KPIT Technologies Interview Questions
3.4
 • 282 Interviews
MapmyIndia Interview Questions
3.7
 • 24 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Upland Software Interview Questions
4.6
 • 15 Interviews
CyberArk Interview Questions
3.7
 • 13 Interviews
HostBooks Interview Questions
2.7
 • 11 Interviews
View all
Digital Marketing Executive
20 salaries
unlock blur

₹1.8 L/yr - ₹3.2 L/yr

Software Developer
16 salaries
unlock blur

₹2.4 L/yr - ₹4.8 L/yr

Web Designer
12 salaries
unlock blur

₹2.4 L/yr - ₹4.2 L/yr

Business Development Manager
10 salaries
unlock blur

₹3.6 L/yr - ₹4.8 L/yr

Digital Marketing Manager
8 salaries
unlock blur

₹2.6 L/yr - ₹7 L/yr

Explore more salaries
Compare Lee & Nee Softwares Exports with

Oracle

3.7
Compare

KPIT Technologies

3.4
Compare

Yalamanchili Software Exports

3.3
Compare

MapmyIndia

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