Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Agoda Team. If you also belong to the team, you can get access from here

Agoda Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Agoda Senior Front End Engineer Interview Questions and Answers

Updated 12 Aug 2024

Agoda Senior Front End Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Angular Component Lifecycle Methods
  • Q2. Pipe vs Directives. Explain the difference
  • Ans. 

    Pipes are used to transform data in templates, while directives are used to manipulate the DOM.

    • Pipes are used to format data in templates, such as date formatting or currency conversion.

    • Directives are used to add behavior to DOM elements, like hiding or showing elements based on conditions.

    • Example: Using a pipe to format a date in a template: {{ currentDate | date }}

    • Example: Using a directive to show/hide an element ba...

  • Answered by AI
  • Q3. AoT and JIT differences
  • Ans. 

    AoT (Ahead of Time) compilation is done before the program runs, while JIT (Just in Time) compilation is done during runtime.

    • AoT compiles the code before execution, resulting in faster startup time.

    • JIT compiles the code during runtime, optimizing performance based on actual usage.

    • AoT is commonly used in languages like Java and C++, while JIT is used in languages like JavaScript and Python.

  • Answered by AI
  • Q4. System Design for URL shortner webapp
  • Ans. 

    System design for a URL shortener webapp

    • Use a database to store original URLs and their corresponding short URLs

    • Implement a service to generate unique short URLs

    • Consider scalability and performance when designing the system

    • Include analytics to track usage and performance of the shortener service

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Agoda?
Ask anonymously on communities.

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Senior Front End Engineer Interview Questions Asked at Other Companies

asked in Agoda
Q1. Explain the difference between Pipes and Directives.
asked in Agoda
Q2. System Design for URL shortner webapp
asked in HubSpot
Q3. Why did you choose HubSpot?
asked in Agoda
Q4. What are the differences between AoT and JIT compilation?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 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 - Coding Test 

Hacker rank aor direct interview

Round 3 - In 

(2 Questions)

  • Q1. Simple Oops question.
  • Q2. Basic programming theories and questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge of coding for freshers.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 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 

Coding Rond consisted of 3 questions

Round 3 - One-on-one 

(3 Questions)

  • Q1. 1. Data structures and algorithms
  • Q2. 2. Computer fundamentals
  • Q3. Revise all cs fundamentals

Interview Preparation Tips

Interview preparation tips for other job seekers - Just polish your DSA concepts and projects in your resume

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data Structures related 2 round & 1 round system Design

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on DS and Design skills. No graphs and DP problems were asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design Search Systems
  • Ans. 

    Designing search systems involves creating efficient algorithms and data structures to quickly retrieve relevant information.

    • Understand the data structure of the search system (e.g. inverted index, trie)

    • Implement efficient search algorithms (e.g. binary search, hash tables)

    • Consider scalability and performance optimization techniques (e.g. caching, indexing)

    • Include user-friendly features like autocomplete and spell corr...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The written test consisted of two DS programs.

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Rotate array leetcode question
  • Q2. Longest palindormic substring
Round 2 - Technical 

(2 Questions)

  • Q1. Print all the subsequences of a string
  • Ans. 

    Generate all possible subsequences of a given string.

    • Use recursion to generate all possible combinations of characters in the string.

    • At each step, include or exclude the current character to form subsequences.

    • Store each subsequence in an array of strings.

  • Answered by AI
  • Q2. Print longest substring with k unique values
  • Ans. 

    Find and print the longest substring with k unique characters in an array of strings.

    • Iterate through the array of strings and keep track of the longest substring with k unique characters.

    • Use a sliding window approach to efficiently find the longest substring.

    • Keep a hashmap to store the frequency of characters in the current window.

    • Update the window boundaries based on the number of unique characters.

    • Return the longest ...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Behaviour quesions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Rain water problem
  • Q2. 2 sum problemjijo
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - Coding Test 

Two medium to hard-level questions and one hard question.

Round 2 - Coding Test 

3 medium level problems

Round 3 - Coding Test 

Two challenging problems were presented.

Round 4 - System design 

(1 Question)

  • Q1. Parking lot design
Round 5 - HR 

(1 Question)

  • Q1. About previous role and experience

Agoda Interview FAQs

How many rounds are there in Agoda Senior Front End Engineer interview?
Agoda interview process usually has 1 rounds. The most common rounds in the Agoda interview process are One-on-one Round.
What are the top questions asked in Agoda Senior Front End Engineer interview?

Some of the top questions asked at the Agoda Senior Front End Engineer interview -

  1. Pipe vs Directives. Explain the differe...read more
  2. System Design for URL shortner web...read more
  3. AoT and JIT differen...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Interview Questions from Similar Companies

Swiggy Interview Questions
3.7
 • 474 Interviews
BigBasket Interview Questions
3.9
 • 399 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
Lenskart Interview Questions
3.2
 • 362 Interviews
CARS24 Interview Questions
3.5
 • 361 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Blinkit Interview Questions
3.8
 • 241 Interviews
Oyo Rooms Interview Questions
3.2
 • 230 Interviews
Myntra Interview Questions
3.9
 • 229 Interviews
Square Yards Interview Questions
3.7
 • 211 Interviews
View all
Senior Software Engineer
36 salaries
unlock blur

₹25 L/yr - ₹74 L/yr

Software Engineer
22 salaries
unlock blur

₹17 L/yr - ₹46 L/yr

Customer experience Specialist
17 salaries
unlock blur

₹4.5 L/yr - ₹5.7 L/yr

Software Developer
11 salaries
unlock blur

₹24 L/yr - ₹69.5 L/yr

Engineering Manager
9 salaries
unlock blur

₹68 L/yr - ₹122 L/yr

Explore more salaries
Compare Agoda with

Udaan

3.9
Compare

BigBasket

3.9
Compare

Swiggy

3.7
Compare

CARS24

3.5
Compare
write
Share an Interview