Upload Button Icon Add office photos

Filter interviews by

FarEye Associate Solutions Engineer Interview Questions and Answers

Updated 23 Dec 2021

FarEye Associate Solutions Engineer Interview Experiences

1 interview found

I applied via Referral and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Programming questions- 1) wap to print 1,5,10,....,100. 2)wap to print Fibonacci series. 3)given an array to strings. Print last 3words of every string in that array.
  • Ans. 

    Programming questions on printing numbers and manipulating strings.

    • For printing 1,5,10,...,100, use a loop and increment the number by 4 in each iteration.

    • For printing Fibonacci series, use a loop and add the previous two numbers to get the next number.

    • For printing last 3 words of every string in an array, split each string into words and print the last three words.

  • Answered by AI
  • Q2. Analytical questions and puzzles.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic programming questions like strings, arrays, etc. Also see some puzzles and analytical questions.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Feb 2022. There were 4 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 - Assignment 

Create a CRUD application

Round 3 - Technical 

(3 Questions)

  • Q1. Javascript, hoisting ,promise ,callback function
  • Q2. Array , object ,JSON,for loop
  • Q3. Introduction react js,and other frameworks ,like angular, Vue
Round 4 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Basic details for joining company

Interview Preparation Tips

Interview preparation tips for other job seekers - Always active for interview and day/day increase your skills and apply regarding jobs

I applied via AmbitionBox and was interviewed in Dec 2021. There were 2 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 - Technical 

(1 Question)

  • Q1. Basics questions of react native

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learn and also try to improve your skills and communication skills

I appeared for an interview in Jan 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. 

    Find a Node in Linked List

    Given a singly linked list of integers, your task is to implement a function that returns the index/position of an integer value 'N' if it exists in the linked list. Return -1 i...

  • Ans. 

    Implement a function to find the index of a given integer in a singly linked list.

    • Traverse the linked list while keeping track of the index of each element.

    • Compare each element with the target integer 'N'.

    • Return the index if 'N' is found, otherwise return -1.

    • Handle cases where the list is empty or 'N' is not found.

    • Consider the constraints on the number of test cases and the length of the linked list.

  • Answered by AI
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations in O(1) time.

    • Create a class named Stack with getSize, isEmpty, push, pop, and getTop methods.

    • Use a Singly Linked List to store the elements of the stack.

    • Ensure each operation runs in constant time complexity (O(1)).

    • Handle edge cases like empty stack appropriately.

    • Example: For input '5', '3 10', '5', '1', '2', '4', the output should be '10', '1'

  • Answered by AI
  • Q3. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list has a cycle using O(N) time complexity and O(1) space complexity.

    • Use Floyd's Tortoise and Hare algorithm to detect cycle in linked list

    • Maintain two pointers, slow and fast, moving at different speeds

    • If there is a cycle, the two pointers will eventually meet

    • If one of the pointers reaches the end of the list (null), there is no cycle

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Easy

  • Q1. 

    Top View of Binary Tree

    Given a binary tree of integers, the task is to return the top view of the given binary tree. The top view of the binary tree is the set of nodes visible when viewed from the top.

    ...
  • Ans. 

    Return the top view of a binary tree given in level-order format.

    • Traverse the binary tree in level-order and keep track of the horizontal distance of each node from the root.

    • Use a map to store the nodes at each horizontal distance, and only keep the first node encountered at each distance.

    • Return the values of the nodes stored in the map in sorted order of their horizontal distance.

    • Example: For the given binary tree, th

  • Answered by AI
  • Q2. 

    Problem Statement: Delete Node In A Linked List

    Given a singly linked list of integers and a reference to a node, your task is to delete that specific node from the linked list. Each node in the linked li...

  • Ans. 

    Given a singly linked list of integers and a reference to a node, delete the specified node from the linked list.

    • Traverse the linked list to find the node to be deleted

    • Update the pointers to skip over the node to be deleted

    • Print the modified linked list after deletion

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in ChennaiEligibility criteriaAbove 7 CGPAOodles Technologies Pvt Ltd interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Object-Oriented Programming, System Design , any programming language, Database Management System, Operating System, NetworkingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Questions as much as you can
Tip 2 : Do at least 2 projects
Tip 3 : Do practice a lot of questions on linked list and stacks as these are two most important data structures asked in the interview. 
Tip 4 : Also, try to implement it yourself without seeing the solution. 
Tip 5 : Also prepare for Computer Science subjects like Operating System, Database Management System, Computer Networks, etc. I prepared them through Coding Ninjas notes which were simpler and easy to understand.

Application resume tips for other job seekers

Tip 1 : Keep your resume short and up to mark and check spellings before submitting it for the interview process.
Tip 2 : Have projects and internships on your resume
Tip 3 : Never lie in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basics on Node.js
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Node.js concepts
  • Q2. Schema design
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Company Website and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Online technical aptitude test

Round 2 - One-on-one 

(1 Question)

  • Q1. Related oops and old company projects
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Sort array of cards in color red , blue,green
  • Ans. 

    Sort array of cards in red, blue, green colors.

    • Use a custom sorting function to sort the array based on color order.

    • Assign a numerical value to each color (e.g. red: 0, blue: 1, green: 2) and sort based on these values.

    • Implement a sorting algorithm like bubble sort or quicksort to rearrange the array based on color order.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find Target Element in a rotating sorted Array.
  • Ans. 

    Search for target element in a rotated sorted array.

    • Use binary search to find the pivot point where rotation happens.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle cases where the target element is on the left or right side of the pivot.

  • Answered by AI
Interview experience
3
Average
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 - Coding Test 

Basic array and string based questions.

Round 3 - Technical 

(2 Questions)

  • Q1. Basics of OOPS and resume.
  • Q2. Reverse a string without using new variable
  • Ans. 

    Reverse a string without using new variable

    • Use two pointers, one at the beginning and one at the end of the string

    • Swap the characters at the two pointers and move the pointers towards each other until they meet in the middle

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOPS, DS, and one programming language. Deep understanding of any programming language will better.

FarEye Interview FAQs

How to prepare for FarEye Associate Solutions Engineer 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 FarEye. The most common topics and skills that interviewers at FarEye expect are Agile, Analytical, Automation, Javascript and Management Consulting.
What are the top questions asked in FarEye Associate Solutions Engineer interview?

Some of the top questions asked at the FarEye Associate Solutions Engineer interview -

  1. Programming questions- 1) wap to print 1,5,10,....,100. 2)wap to print Fibon...read more
  2. Analytical questions and puzzl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Chegg Interview Questions
4.1
 • 155 Interviews
Testbook.com Interview Questions
3.5
 • 99 Interviews
Zeta Interview Questions
3.4
 • 69 Interviews
Webkul Software Interview Questions
3.8
 • 59 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
View all
FarEye Associate Solutions Engineer Salary
based on 31 salaries
₹4.4 L/yr - ₹9 L/yr
30% less than the average Associate Solutions Engineer Salary in India
View more details

FarEye Associate Solutions Engineer Reviews and Ratings

based on 11 reviews

2.3/5

Rating in categories

1.9

Skill development

2.5

Work-life balance

2.2

Salary

2.0

Job security

3.1

Company culture

1.7

Promotions

2.8

Work satisfaction

Explore 11 Reviews and Ratings
Solution Engineer
109 salaries
unlock blur

₹4 L/yr - ₹14.2 L/yr

Senior Solution Engineer
59 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Technical Support Engineer
57 salaries
unlock blur

₹2.8 L/yr - ₹5.3 L/yr

Software Development Engineer II
37 salaries
unlock blur

₹17 L/yr - ₹31.7 L/yr

Software Development Engineer
36 salaries
unlock blur

₹7.1 L/yr - ₹25 L/yr

Explore more salaries
Compare FarEye with

Chegg

4.1
Compare

Tekwissen

4.8
Compare

Softenger

4.1
Compare

Edubridge Learning

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