Upload Button Icon Add office photos

Filter interviews by

FarEye Sde1 Interview Questions and Answers

Updated 7 Jun 2022

FarEye Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 7 Jun 2022

I applied via campus placement at Indian Institute of Technology (IIT), Kanpur and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Too find all numbers whose consecutive digits differ by 1
  • Ans. 

    Find all numbers whose consecutive digits differ by 1

    • Iterate through all numbers and check if consecutive digits differ by 1

    • Start with 12 and increment by 1 until 98

    • Add the number to the result array if it satisfies the condition

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Discussion on Projects, HR questions, then a DS problem to find all numbers whose consecutive digits differ by 1.

Skills evaluated in this interview

Interview questions from similar companies

Sde1 Interview Questions & Answers

Zeta user image Anonymous

posted on 10 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hard leetcode questions prepare well its online exam

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. OOPS concept and All Major pillars with Scanrio-based questions asked on Abstract class and Interface
  • Q2. .Net MVC and .Net Core based on program.cs file and Dependency Injection and Middleware in deep
  • Q3. Pattern question and check string Palindrome
  • Q4. SQL Queries around 4th highest salary of Employee
  • Q5. All basic programming concept checking like having prefix and postfix expression problem solving on paper
Round 2 - Technical 

(4 Questions)

  • Q1. TechnoManagerial Round Collection question to find about number of character present in the word Mirafra with live coding F2F
  • Q2. API testing ang REST API Concept
  • Q3. Professional Journey
  • Q4. Project Details
Round 3 - Technical 

(2 Questions)

  • Q1. It was a director round but say you need to give again technical round ,they wasted my time and money.
  • Q2. SQL Queries on pen and paper

Interview Preparation Tips

Interview preparation tips for other job seekers - HR said you haven't the skill to represent on client. Never believe on HR what they said.Final round was my Director's round but she wasted my time
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. C++ Concepts and classes
Round 2 - One-on-one 

(1 Question)

  • Q1. Code snippet and output
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round and related non tech questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare C++ well and code snippets of C++
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 Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Focusing on moderate level patterns

Round 2 - Technical 

(4 Questions)

  • Q1. Discuss object oriented principles in depth
  • Ans. 

    Object oriented principles are fundamental concepts in software development that focus on organizing code into objects with properties and behaviors.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a new class to inherit properties and behaviors from an existing class.

    • Polymorphism: The ability for objects of different classes to respond to the same message in di...

  • Answered by AI
  • Q2. Deep discuss of interface
  • Q3. Deep discuss of exception, multithreading
  • Q4. Deep discuss of oop
Round 3 - HR 

(1 Question)

  • Q1. Asked some tricky question related to real life problems

Interview Preparation Tips

Interview preparation tips for other job seekers - All Good 👍🏻
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Trie based question
  • Q2. Design LRU cache
  • Ans. 

    Design a data structure for LRU cache with get and put operations, evicting least recently used item when capacity is reached.

    • Implement a doubly linked list to keep track of the order of keys based on their usage

    • Use a hashmap to store key-value pairs for quick access

    • Update the order of keys in the linked list when a key is accessed or inserted

    • Evict the least recently used item when the cache reaches its capacity

  • Answered by AI
Round 2 - System Design 

(2 Questions)

  • Q1. Unique ID generator
  • Q2. Project related questions
Round 3 - Behavioral 

(2 Questions)

  • Q1. Operating systems, DBMS
  • Q2. Few question on projects from my previous company

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is server and abap server
  • Ans. 

    A server is a computer or software that provides functionality for other programs or devices. ABAP server is a server that runs ABAP programs.

    • A server is a computer or software that provides services or resources to other computers or programs.

    • ABAP server is a server that runs ABAP (Advanced Business Application Programming) programs, commonly used in SAP systems.

    • ABAP server handles requests from clients and executes A...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was about DS Algo and Java garbage collection,multithreading

Round 2 - Technical 

(2 Questions)

  • Q1. Low level design of rate limiter
  • Ans. 

    Rate limiter is a system that controls the rate of traffic sent or received by a network interface.

    • Implement a token bucket algorithm to track and limit the rate of requests

    • Use a sliding window algorithm to track the number of requests within a specific time frame

    • Consider using a distributed rate limiter for scalability and fault tolerance

  • Answered by AI
  • Q2. Springboot basics, java basics, future interfaces, basic sql queries

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Longest Consecutive Sequence
  • Ans. 

    Find the length of the longest consecutive elements sequence in an array.

    • Sort the array to ensure consecutive elements are adjacent

    • Iterate through the array and keep track of the current consecutive sequence length

    • Update the longest consecutive sequence length as you iterate

  • Answered by AI
  • Q2. Core Java Questions
Round 2 - Technical 

(2 Questions)

  • Q1. Executor Service and it's code
  • Ans. 

    Executor Service is a framework provided by Java for managing and executing asynchronous tasks.

    • Executor Service allows you to easily create and manage threads for executing tasks.

    • It provides a way to control the number of threads used for executing tasks, which can help prevent resource exhaustion.

    • You can submit tasks to an Executor Service using methods like execute() or submit().

    • Executor Service can be used to execut...

  • Answered by AI
  • Q2. Core Java and Spring boot questions
Round 3 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. Core Java questions

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is your name
  • Q2. What is your strength

Interview Preparation Tips

Interview preparation tips for other job seekers - No comments links to this video is small

FarEye Interview FAQs

How many rounds are there in FarEye Sde1 interview?
FarEye interview process usually has 1 rounds. The most common rounds in the FarEye interview process are Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 447 Interviews
Ecom Express Interview Questions
3.9
 • 192 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
Chegg Interview Questions
4.1
 • 153 Interviews
XpressBees Interview Questions
3.7
 • 152 Interviews
Testbook.com Interview Questions
3.6
 • 96 Interviews
GATI-KWE Interview Questions
4.0
 • 85 Interviews
Rivigo Interview Questions
3.9
 • 72 Interviews
Zeta Interview Questions
3.3
 • 68 Interviews
View all
FarEye Sde1 Salary
based on 6 salaries
₹8 L/yr - ₹20 L/yr
37% less than the average Sde1 Salary in India
View more details

FarEye Sde1 Reviews and Ratings

based on 2 reviews

2.0/5

Rating in categories

2.0

Skill development

2.0

Work-life balance

4.0

Salary

1.0

Job security

1.0

Company culture

3.0

Promotions

1.0

Work satisfaction

Explore 2 Reviews and Ratings
Solution Engineer
107 salaries
unlock blur

₹4 L/yr - ₹14.2 L/yr

Senior Solution Engineer
58 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Technical Support Engineer
55 salaries
unlock blur

₹2.8 L/yr - ₹5.3 L/yr

Software Development Engineer
38 salaries
unlock blur

₹8.2 L/yr - ₹30 L/yr

Technical Engineer
37 salaries
unlock blur

₹2.8 L/yr - ₹5.3 L/yr

Explore more salaries
Compare FarEye with

LogiNext Solutions

1.7
Compare

Shiprocket Private Limited

3.8
Compare

Rivigo

3.9
Compare

Shadowfax Technologies

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