Upload Button Icon Add office photos

Filter interviews by

Azamara Club Cruises Application Developer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is @SpringbootAnnotation and what is difference between @Controller and @RestController.
  • Ans. 

    SpringBootAnnotation is used to enable Spring Boot features in a Java application. @Controller is used for MVC pattern, @RestController is used for RESTful web services.

    • SpringBootAnnotation is used to enable Spring Boot features like auto-configuration, component scanning, etc.

    • @Controller is used for MVC pattern to handle web requests and return a view, while @RestController is used for RESTful web services to return d...

  • Answered by AI
  • Q2. What is Stream API write the Stream API Code any code and lambda expression.
  • Ans. 

    Stream API in Java provides a way to process collections of objects in a functional style.

    • Stream API allows for easy manipulation of collections using functional programming concepts like map, filter, and reduce.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().filter(name -> name.startsWith("A")).forEach(System.out::println);

    • Lambda expressions can be used with Stream API to define behavio...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed at Accenture on 28Sep2024, technical interview was good, interviewer said you will be having another round I am passing my remarks to the team, after 5 min I got a call that update your details on the portal, after click on the link I received a mail that My candidature has been rejected on the portal.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Questions related to Oops, SQL, MVC, C#
  • Q2. Basic Coding on Stored Procedure

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions were related to skills mentioned on Resume. Prepare more on the project and skills mentioned on resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is bussniess rule ?
  • Ans. 

    A business rule is a specific guideline or constraint that dictates how a business operates or makes decisions.

    • Business rules are typically defined by stakeholders or subject matter experts.

    • They help ensure consistency, compliance, and efficiency in business processes.

    • Examples include age restrictions for purchasing alcohol, pricing strategies, and approval processes for expenses.

  • Answered by AI
  • Q2. What is update set?
  • Ans. 

    An update set is a group of changes that can be moved from one instance to another in ServiceNow.

    • Update sets are used to transport customizations, such as new fields, tables, or scripts, between instances.

    • They help in organizing changes and tracking what customizations are being moved.

    • Update sets can be previewed, committed, and rolled back if needed.

    • Example: Creating a new field in a development instance and moving it

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. COBOL, DB2 - Restart logic, Cursor life cycle
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About primary keys (how columns can be accommodated in a single primary key)
  • Q2. Types of Constructors
  • Ans. 

    Constructors are special methods used to initialize objects in a class.

    • Constructors have the same name as the class.

    • Types of constructors include default, parameterized, copy, and static constructors.

    • Example: public class Person { public Person() { } }

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. All concept need to clear
  • Q2. Explain max to max answer to them

Interview Preparation Tips

Interview preparation tips for other job seekers - Give them 100% from ur end
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2022. There were 4 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 - HR 

(1 Question)

  • Q1. General Hr questions like self intro preivious experience,
Round 3 - Aptitude Test 

Genral and english aptitude test

Round 4 - One-on-one 

(4 Questions)

  • Q1. Operations round with managers questions based on apps
  • Q2. How does apps work in our daily life
  • Ans. 

    Apps have become an integral part of our daily lives, helping us with various tasks and activities.

    • Apps help us stay organized by managing our schedules and to-do lists.

    • They provide entertainment through games, music, and video streaming services.

    • Apps facilitate communication through social media platforms and messaging apps.

    • They assist in navigation with GPS and mapping apps.

    • Apps enable online shopping and banking, ma...

  • Answered by AI
  • Q3. Category in apps we use in our day to day life
  • Ans. 

    Categories in apps include social media, productivity, entertainment, health & fitness, education, finance, and communication.

    • Social media apps (e.g. Facebook, Instagram, Twitter)

    • Productivity apps (e.g. Microsoft Office, Trello, Evernote)

    • Entertainment apps (e.g. Netflix, Spotify, YouTube)

    • Health & fitness apps (e.g. Fitbit, MyFitnessPal, Headspace)

    • Education apps (e.g. Duolingo, Khan Academy, Quizlet)

    • Finance apps (e.g. M...

  • Answered by AI
  • Q4. What are sub categories in apps and how do they work?
  • Ans. 

    Sub categories in apps are smaller categories within a main category that help organize and navigate content more efficiently.

    • Sub categories help users easily find specific content within an app

    • They can be used to group similar features or functions together

    • Examples include sub categories like 'Settings', 'Notifications', 'Profile' within a main category like 'Account'

  • Answered by AI

Interview Questionnaire 

4 Questions

  • Q1. What is volatile keyword?
  • Ans. 

    Volatile keyword is used to indicate that a variable's value can be changed unexpectedly by external factors.

    • Volatile keyword is used in multithreaded programming to ensure that the variable's value is always read from memory and not from cache.

    • It is also used in embedded systems programming to indicate that the variable's value can be changed by hardware interrupts.

    • Example: volatile int count = 0; // variable can be c...

  • Answered by AI
  • Q2. What is transient keyword?
  • Ans. 

    Transient keyword is used in Java to indicate that a variable should not be serialized.

    • Transient keyword is used with variables to exclude them from serialization process.

    • It is used to mark a variable as non-persistent.

    • Transient variables are not saved during serialization and are initialized to default value during deserialization.

    • Example: private transient int age; // age will not be serialized

  • Answered by AI
  • Q3. What is the difference between @Controller and @RestController
  • Q4. What ia the difference between Hibernate get() and load()
  • Ans. 

    Hibernate get() returns object by id, load() returns proxy object until accessed.

    • get() method returns the object from the database by its id.

    • load() method returns a proxy object until it is accessed, then it loads the object from the database.

    • get() method returns null if the object is not found in the database, while load() method throws an exception.

    • get() method is eager loading, while load() method is lazy loading.

  • Answered by AI

Skills evaluated in this interview

I applied via campus placement at Vidya Vikas Institute of Engineering and Technology, Mysore and was interviewed in Aug 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Asked on final year project
  • Q2. Real world scenario on how do you implement your subject

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have clear understanding and perfection with your resume, brush up your technical skills based on what you have put in your resume

I applied via Company Website and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics things related to technology

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