Upload Button Icon Add office photos

Filter interviews by

Azamara Club Cruises Software Developer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

Asking the dp and tree and other

Round 2 - One-on-one 

(1 Question)

  • Q1. Asking the project based question and
Round 3 - HR 

(1 Question)

  • Q1. Some question asking base on cultural base and resume based
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Anna University and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It consists of MCQ question related to oops,SQL
Round 2 - Group Discussion 

General topics were given

Round 3 - HR 

(1 Question)

  • Q1. The HR was friendly and I was asked to write code for sorting , then about my project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with basic questions related to oops, SQL
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, basic ,SQL ,ado
Round 2 - Coding Test 

Curd operation with SQL connectivity

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

I applied via Job Fair and was interviewed in Jun 2023. 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 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude round and 2 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Techincal interview questions on basic DSA and os DBMS and major grilling on projects
Round 3 - HR 

(1 Question)

  • Q1. Basic questions like tell me about your self and willing to relocate etc

Interview Preparation Tips

Interview preparation tips for other job seekers - keep your basics right and remain confident during the interview

I applied via Job Portal and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Coding Test 

2 rounds easy

Round 2 - HR 

(3 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all basic concepts and try to learn all the functions

I applied via Naukri.com and was interviewed in Apr 2021. There were 8 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is Microservice?
  • Ans. 

    Microservice is a software architecture pattern where an application is built as a collection of small, independent services.

    • Microservices are independently deployable and scalable.

    • Each microservice performs a specific business function.

    • Communication between microservices is usually done through APIs.

    • Microservices can be written in different programming languages and use different data storage technologies.

    • Examples of ...

  • Answered by AI
  • Q2. What is a Consumer Group?
  • Ans. 

    A Consumer Group is a group of consumers that collectively consume messages from one or more topics.

    • Consumer Groups allow for parallel processing of messages from a topic

    • Each consumer group maintains its own offset for each partition of a topic

    • Multiple consumer groups can consume messages from the same topic

    • Consumer Groups are commonly used in Apache Kafka

  • Answered by AI
  • Q3. Is it possible to use Kafka without ZooKeeper?
  • Ans. 

    No, Kafka relies on ZooKeeper for cluster coordination and management.

    • ZooKeeper is used for leader election, configuration management, and synchronization in Kafka clusters.

    • Kafka brokers register themselves in ZooKeeper and use it to discover other brokers and partitions.

    • Without ZooKeeper, Kafka cannot function as a distributed system.

    • However, Kafka can be run in standalone mode without ZooKeeper for development and te

  • Answered by AI
  • Q4. Role of the ZooKeeper?
  • Ans. 

    ZooKeeper is a distributed coordination service for managing configuration, synchronization, and naming.

    • ZooKeeper provides a hierarchical namespace for distributed systems.

    • It is used for maintaining configuration information, naming, providing distributed synchronization, and group services.

    • ZooKeeper is used in Apache Hadoop, Apache Kafka, and Apache Storm.

    • It uses a consensus protocol called ZAB (ZooKeeper Atomic Broad...

  • Answered by AI
  • Q5. Why are Replications critical in Kafka?
  • Ans. 

    Replications ensure fault tolerance and high availability of data in Kafka.

    • Replications provide redundancy and ensure that data is not lost in case of node failures.

    • They also improve read performance by allowing consumers to read from multiple replicas.

    • Replications can be configured to have different levels of consistency guarantees.

    • For example, a replication factor of 3 ensures that data is stored on 3 different nodes...

  • Answered by AI
  • Q6. What is Web services?
  • Ans. 

    Web services are software systems designed to support interoperable machine-to-machine interaction over a network.

    • Web services allow different applications to communicate with each other over the internet.

    • They use standardized protocols like HTTP, XML, SOAP, and REST.

    • Web services can be used for a variety of purposes, such as sharing data between different systems or integrating different applications.

    • Examples of web s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidential

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Programming,verbal vebility,logical learning

Interview Preparation Tips

Interview preparation tips for other job seekers - i feel very good in both rounds.but secound round i exams is difficults copare to first round.

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

It was early in the morning around 8:00AM-8:40AM. Platform used was hackerrank and the questions asked were of moderate level.

  • Q1. 

    Split Array with Equal Sums Problem Statement

    Given an array 'ARR' of size 'N', determine if there exists a triplet (i, j, k) satisfying the conditions: 0 < i , i + 1 < j , j + 1 < k and k < N...

  • Ans. Brute Force

    To implement this approach, You have to understand the constraints first, i.e., 0 < i, i+1 < j , j+1< k < N-1.

    If you carefully look at the constraints, you may notice the problem while splitting the array into slices or subarrays does not include the elements at index i,  j, and k. So it can be simply observed that according to constraints during the slices you make, three of the elements wi...

  • Answered Anonymously
Round 2 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was in the evening around 4;00PM-4:20PM. This round was very interesting as it focuses more about your personality rather than your knowledge which has been already checked in previous rounds.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaNo BacklogsCapgemini interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, DBMS, Aptitude, Web DevelopmentTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude as much as possible.
Tip 2 : Practice more and more questions related to your skills.
Tip 3 : Proper revision is must.

Application resume tips for other job seekers

Tip 1 : It should not be too long or too short.
Tip 2 : Each skill and project should be reflected properly in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. There was 4 round in selection process. 1st round was online written exam for aptitude, reasoning and verbal those who will qualify in this round will get chance to appear for 2nd round that is coding roun...

Tell us how to improve this page.

Chef DE Partie
7 salaries
unlock blur

₹4 L/yr - ₹12.3 L/yr

Assistant Waiter
3 salaries
unlock blur

₹1.2 L/yr - ₹9.2 L/yr

Explore more salaries
Compare Azamara Club Cruises with

Royal Caribbean International

4.5
Compare

Carnival

4.1
Compare

Norwegian Cruise Line

4.3
Compare

Msc Cruises

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