Upload Button Icon Add office photos

Filter interviews by

CostaCloud Application Developer Interview Questions and Answers

Updated 23 May 2024

CostaCloud Application Developer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. What is Dom? Difference between virtual Dom and Dom
  • Ans. 

    DOM stands for Document Object Model. Virtual DOM is a lightweight copy of the actual DOM used for efficient updates.

    • DOM stands for Document Object Model, representing the structure of a web page as a tree of objects.

    • Virtual DOM is a lightweight copy of the actual DOM used for efficient updates without directly manipulating the real DOM.

    • Changes made to the virtual DOM are compared with the real DOM, and only the differ...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Boxing Unboxing
  • Q2. Abstract class and interface
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

CostaCloud Interview FAQs

How many rounds are there in CostaCloud Application Developer interview?
CostaCloud interview process usually has 1 rounds. The most common rounds in the CostaCloud interview process are Technical.
How to prepare for CostaCloud Application Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at CostaCloud. The most common topics and skills that interviewers at CostaCloud expect are Core Java, Java, Microservices, Spring and Spring Boot.

Tell us how to improve this page.

CostaCloud Application Developer Salary
based on 5 salaries
₹3.5 L/yr - ₹8 L/yr
60% less than the average Application Developer Salary in India
View more details

CostaCloud Application Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

2.0

Salary & Benefits

4.0

Job Security

3.0

Company culture

2.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
12 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Java Developer
10 salaries
unlock blur

₹1.8 L/yr - ₹7.8 L/yr

Software Developer
7 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Application Developer
5 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Technical Support Engineer
4 salaries
unlock blur

₹2.8 L/yr - ₹13 L/yr

Explore more salaries
Compare CostaCloud with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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