FarEye

Below are FarEye interview questions for SDE2 role.

Round 1:

Hacker-rank Assessment Test

Soln:

select d.name, count(unique(e.id)) as c
from department d, employee e
where d.id = e.dept_id
group by d.name
order by c desc, d.name;

select d.name, 0
from department d
left outer join employee e on d.id = e.dept_id
where e.id is null
group by d.name
order by d.name;
FarEye interview questions
  • Third question was simple based on String sorting

Round 2:

Round 3:

  1. Tell me about your project in full details.
  2. High level and low level design of Movie booking app (like Book My Show.

Other Companies Interview Experiences:

Leave a Comment

error: Content is protected !!