Upload Button Icon Add office photos

Filter interviews by

Kohinoor Asiana Hotel Full Stack Developer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The test happened at 9 PM, and the duration was of 90 mins. The test was held on Codility platform.

  • Q1. Reach the destination

    Given a source point (sx, sy) and a destination point (dx, dy), the task is to check if it is possible to reach the destination point using the following valid moves:

    (a, b) -> (a...
  • Ans. Brute force approach

    The naive approach to solve this problem is to consider each and every possible move until we reach the destination.

     

    This can be done using recursion. Below is the algorithm:

     

    • Check for the bases:
      • If the source and destination coordinates are the same, return true.
      • Return false, if the x (or y) coordinate of source point is greater than the x (or y) coordinate of the destination point. As the...
  • Answered by CodingNinjas
  • Q2. Circular Move

    You have a robot currently standing at the origin (0, 0) of a two-dimensional grid and facing north direction. You are given a sequence of moves for the robot in the form of a string of size...

  • Ans. Optimal Approach

    Initialize a variable ‘direction’ with 0 which means that the robot is initially facing towards the north.

    direction: 0 -> Robot is facing towards the North
    direction: 1 -> Robot is facing towards the West 
    direction: 2 -> Robot is facing towards the South 
    direction: 3 -> Robot is facing towards the West

     

    Initialize two variables ‘x’ and ‘y’ as 0. They will represent the position ...

  • Answered by CodingNinjas
  • Q3. Buy and Sell Stock

    You are Harshad Mehta’s friend. He told you the price of a particular stock for the next ‘N’ days. You can either buy or sell a stock. Also, you can only complete at most 2-transactions....

  • Ans. Recursion

    This problem can be solved by solving its subproblems and then combining the solutions of the solved subproblems to solve the original problem. We will do this using recursion.

    Basically, we have to buy the stock at the minimum possible price and sell at the maximum possible price, keeping in mind that we have to sell the stock before buying it again.

     

     

    Below is the detailed algorithm: 

     

    1. Call ...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

The timing for this round was around 10 AM. How to optimize website assets loading? Explain Hoisting in javascript.

  • Q1. Number Of Pairs With Given Sum

    You have been given an integer array/list(arr) and a number 'Sum'. Find and return the total number of pairs in the array/list which when added, results equal to the ...

  • Ans. Brute Force Approach
    • Initialize the ans = 0
    • Run two loops first from i = 0 to n-1 and second from j = i+1 to  n-1 and if arr[i] + arr[j] == Sum then increase the ans by 1.
    • Return ans
    Space Complexity: O(1)Explanation:

    O(1)

     

    As constant extra space is used.

    Time Complexity: O(n^2)Explanation:

    O(N^2), where N is the size of the array.


    As we are running two nested loops of size N.

  • Answered by CodingNinjas
Round 3 - Coding Test 

(4 Questions)

Round duration - 30 minutes
Round difficulty - Easy

This was a problem solving round and consisted of puzzles and mathematical problems.

  • Q1. Puzzle

    A man fell in a 50m deep well. He climbs 4 meters up and slips 3 meters down in one day. How many days would it take for him to come out of the well?

  • Q2. Puzzle

    Suppose you take 5 mins to think for a coding task, another 10 mins to code where you write 100 lines of code. You take a break of 5 mins every 10 mins. How much lines of code will you have written a...

  • Q3. Puzzle

    There is a room with a door (closed) and three light bulbs. Outside the room, there are three switches, connected to the bulbs. You may manipulate the switches as you wish, but once you open the door...

  • Q4. Puzzle

    You are given Rs 100 every week. Every day you put Rs 5 in you piggy bank except on Sunday you put Rs 10. You take a bus to college, one side trip costs Rs 4, you do 2 trips a day. You have your lunc...

Interview Preparation Tips

Professional and academic backgroundI completed Electronics & Communication Engineering from Punjab Engineering College(Deemed To be University). Eligibility criteriaAbove 7 CGPAAmerican Express interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, OS, DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be good at problem solving, accuracy and speed matters.
Tip 2 : Also prepare core CS subjects, OS, OOPS, DBMS.
Tip 3 : Be thorough with your resumé.

Application resume tips for other job seekers

Tip 1 : Keep at least 2 great projects on resume.
Tip 2 : Try to include only tech-related information in resumé( for SDE roles).

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Patna and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It consists 2 coding questions and you have to answer in 40 mins

Round 2 - HR 

(2 Questions)

  • Q1. HR asked general questions about yourself
  • Q2. Done discussion related to projects and experience

Interview Preparation Tips

Topics to prepare for Sabre Software Developer interview:
  • DSA
  • Cs fundamentals
  • React js
Interview preparation tips for other job seekers - It was totally offline. So prepare well don't relie on cheating
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

It was good and nice to talk

Round 2 - Technical 

(2 Questions)

  • Q1. Introduction about yourself
  • Q2. Oops concept question
Round 3 - HR 

(2 Questions)

  • Q1. About youself job profile
  • Q2. Salary negotations

Interview Preparation Tips

Interview preparation tips for other job seekers - Please by careful
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Sep 2023.

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 - HR 

(1 Question)

  • Q1. Tell me about your previous projects from your last job.
Round 3 - Technical 

(1 Question)

  • Q1. What's your experience with Nodejs?
  • Ans. 

    I have 3 years of experience working with Nodejs in developing backend services and APIs.

    • Developed RESTful APIs using Express framework

    • Used npm packages like Sequelize for database interactions

    • Implemented real-time features with Socket.io

    • Worked on server-side rendering with frameworks like Next.js

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is gcd? And explain it
  • Ans. 

    gcd stands for greatest common divisor, the largest positive integer that divides two or more numbers without leaving a remainder.

    • gcd is used to find the largest integer that can evenly divide two or more numbers.

    • It is commonly used in mathematics and computer science algorithms.

    • For example, the gcd of 12 and 18 is 6, as 6 is the largest number that can divide both 12 and 18 without leaving a remainder.

  • Answered by AI
  • Q2. What is arc and explain it
  • Ans. 

    ARC stands for Automatic Reference Counting, a memory management technique used in programming languages like Objective-C and Swift.

    • ARC automatically tracks and manages the memory used by objects in a program

    • It increases the retain count of an object when it is referenced and decreases it when it is no longer needed

    • ARC helps prevent memory leaks and retain cycles in iOS and macOS development

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read react native basics

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Discussion about Hashmaps.
  • Q2. How to make Spring Applications?
  • Ans. 

    Spring applications can be made using Spring Boot, which simplifies the setup and configuration process.

    • Use Spring Initializr to create a new Spring Boot project

    • Add dependencies in the pom.xml file for required Spring modules

    • Create Java classes with annotations like @Controller, @Service, @Repository, etc.

    • Define application properties in application.properties or application.yml file

    • Run the application using the main m

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Discussion about Goals.
  • Q2. Discussed points from Resume

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were three coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Could you provide a thorough explanation of the project?
  • Q2. OOps Concepts and question from the technical subjects
  • Q3. Why Spring Boot
  • Q4. JWT Authentication
  • Q5. Docker and Kubernetes
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Recruitment Consulltant

Round 1 - Coding Test 

It was a 1.5 hours of assessment on coderbyte.com

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

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Functional interface
  • Q2. Find if array of numbers, which are prime, using streams
  • Ans. 

    Use streams to find prime numbers in an array

    • Use Java streams to filter out non-prime numbers from the array

    • Check if a number is prime by dividing it by all numbers less than its square root

    • Create a method to check if a number is prime

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics, functional interfaces, REST security

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Solid principles and multithreading
Round 2 - HR 

(1 Question)

  • Q1. Past work experience and salary expectations

Tell us how to improve this page.

Interview Questions from Similar Companies

American Express Interview Questions
4.2
 • 355 Interviews
Infogain Interview Questions
3.6
 • 117 Interviews
Spicejet Interview Questions
3.6
 • 91 Interviews
BCD Travel Interview Questions
4.4
 • 84 Interviews
ITC Hotels Interview Questions
4.1
 • 80 Interviews
Engineers India Interview Questions
4.4
 • 71 Interviews
View all
Commis 1
3 salaries
unlock blur

₹3.2 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Kohinoor Asiana Hotel with

American Express

4.2
Compare

Taj Hotels Resorts and Palaces

4.2
Compare

Radisson Hotels

4.0
Compare

Mahindra Holidays & Resorts

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview