Upload Button Icon Add office photos

Filter interviews by

FarEye HR Intern Interview Questions and Answers

Updated 1 Apr 2021

FarEye HR Intern Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions were basic

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Name some job portals on which we can prepare JDs. Prepare a list on which job portals we can give JDs for Delivery Executives for Swiggy and Zomato.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be fearless and tell always what's the truth whether they accept you or reject you.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. About your life from childhood and challenged faced and how you overcome it

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is diameter of Binary Tree? Write full working code.
  • Ans. 

    Diameter of a binary tree is the longest path between any two leaf nodes.

    • Calculate the height of left and right subtrees recursively.

    • Calculate the diameter recursively using the formula max(left_height + right_height + 1, max(left_diameter, right_diameter)).

    • Return the maximum diameter.

  • Answered by AI
  • Q2. Find interchanged terms from an AP, where terms are arranged in series
  • Ans. 

    To find interchanged terms from an AP series

    • Identify the common difference between terms

    • Swap the positions of adjacent terms

    • Check if the new series is also an AP

    • Repeat until no more interchanged terms can be found

  • Answered by AI
  • Q3. Explain database indexing
  • Ans. 

    Database indexing is a technique to improve the performance of database queries.

    • Indexing creates a data structure that allows for faster retrieval of data.

    • Indexes are created on one or more columns of a table.

    • Queries that use indexed columns can be executed faster.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basic data structures, operating systems and database.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Design a stack that support getmin in O(1) time and O(1) space complexities
  • Ans. 

    Design a stack that supports getmin in O(1) time and O(1) space complexities.

    • Use two stacks, one for storing the actual values and the other for storing the minimum values.

    • When pushing a new value, check if it is smaller than the current minimum value and push it to the minimum stack if it is.

    • When popping a value, check if it is the current minimum value and pop it from the minimum stack if it is.

    • To get the minimum val...

  • Answered by AI
  • Q2. Questions related OS and DBMS
  • Q3. Binary tree traversal
  • Ans. 

    Binary tree traversal is the process of visiting each node in a binary tree exactly once in a specific order.

    • There are three main types of binary tree traversal: inorder, preorder, and postorder.

    • Inorder traversal visits the left subtree, then the root, then the right subtree.

    • Preorder traversal visits the root, then the left subtree, then the right subtree.

    • Postorder traversal visits the left subtree, then the right subt...

  • Answered by AI
  • Q4. LRU cache explanation
  • Ans. 

    LRU cache is a data structure that stores the most recently used items and discards the least recently used items.

    • LRU stands for Least Recently Used

    • It has a fixed size and when the cache is full, the least recently used item is removed to make space for a new item

    • It uses a combination of a doubly linked list and a hash map to achieve O(1) time complexity for both insertion and deletion

    • Example: A web browser cache that ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good with your programming skills and fundamentals.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Architecture of current project
  • Ans. 

    The current project follows a microservices architecture with Docker containers for scalability and flexibility.

    • Microservices architecture is used to break down the application into smaller, independent services that can be developed, deployed, and scaled independently.

    • Docker containers are utilized for packaging the application and its dependencies into a standardized unit for easy deployment and management.

    • Service di...

  • Answered by AI
  • Q2. Spring and Hibernate questions
Round 2 - Coding Test 

Basic coding questions

I applied via Approached by Company and was interviewed in Aug 2021. 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 - Coding Test 

Assignment to develop a prototype

Round 3 - One-on-one 

(3 Questions)

  • Q1. Face to face questions
  • Q2. Java Question Technical & coding
  • Q3. Mongodb & Mysql Question

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Will be given Requirement to write code for Restraunt. Based on that have write code for delivering orders by delivery boys.

Round 2 - Technical 

(1 Question)

  • Q1. OOPS Concepts, Java Basics, Collections, MultiThreading

Interview Preparation Tips

Topics to prepare for LogiNext Solutions Software Engineer interview:
  • Java
  • OOPS
  • MySQL
  • Pattern Programming
Interview preparation tips for other job seekers - Focus on DSA and Logical Programming
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Jump Game - II
  • Q2. Number of Island
  • Ans. 

    Count the number of islands in a given grid of '1's and '0's.

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited.

    • Increment the island count for each new island encountered.

    • Consider edge cases like grid boundaries and handling visited cells.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Shortest path sum with negative integers allowed in matrix. Path starts from top left to bottom right.
  • Ans. 

    Use dynamic programming to find the shortest path sum with negative integers allowed in a matrix.

    • Implement dynamic programming to store the minimum sum at each cell

    • Consider negative integers when calculating the sum of the path

    • Start from the top left cell and iterate through the matrix to find the shortest path sum

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 456 Interviews
Ecom Express Interview Questions
3.8
 • 197 Interviews
BlackBuck Interview Questions
3.8
 • 175 Interviews
XpressBees Interview Questions
3.6
 • 159 Interviews
Chegg Interview Questions
4.1
 • 155 Interviews
Testbook.com Interview Questions
3.6
 • 99 Interviews
GATI-KWE Interview Questions
3.9
 • 86 Interviews
Zeta Interview Questions
3.3
 • 69 Interviews
View all
Solution Engineer
109 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Solution Engineer
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare FarEye with

LogiNext Solutions

1.8
Compare

Shiprocket Private Limited

3.7
Compare

Shadowfax Technologies

3.6
Compare

Delhivery

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