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
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of Core Python concepts like Loops, Lambda functions.
  • Q2. Check if a string is Palindrome or not.
  • Ans. 

    Check if a string is Palindrome or not.

    • Create a function to compare the original string with its reverse

    • Ignore spaces and punctuation when checking for palindrome

    • Examples: 'racecar' is a palindrome, 'hello' is not

  • Answered by AI
  • Q3. Questions of Sql.
Round 2 - One-on-one 

(2 Questions)

  • Q1. What questions were asked regarding the projects you worked on, and what specific technicalities were included?
  • Q2. Questions on Django, Flask and REST API services.

Interview Preparation Tips

Topics to prepare for Accenture Application Developer interview:
  • Python
  • Django
  • Flask
  • SQL
Interview preparation tips for other job seekers - Easy going interview. Brush up-on your basics and then be prepared with your resume.
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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Explain role and responsibilities in your profile
  • Q2. Explain Ansible architecture
  • Ans. 

    Ansible architecture is based on a client-server model where the control machine communicates with managed nodes using SSH.

    • Ansible control machine: where playbooks are written and executed

    • Managed nodes: machines that are being managed by Ansible

    • Inventory: list of managed nodes

    • Playbooks: automation scripts written in YAML format

    • Modules: reusable units of code that perform specific tasks on managed nodes

  • Answered by AI
  • Q3. Difference between cmd and entry point
  • Ans. 

    Cmd is used to specify the default command to run when a container is started, while entry point is used to specify the executable that will run when the container starts.

    • Cmd is optional and can be overridden at runtime, while entry point is required and cannot be overridden.

    • Cmd is used to provide default arguments for the entry point command.

    • Example: CMD ["python", "app.py"] - specifies the default command to run the ...

  • Answered by AI
  • Q4. How to stop container
  • Ans. 

    To stop a container, use the 'docker stop' command followed by the container ID or name.

    • Use 'docker ps' command to list all running containers

    • Identify the container ID or name of the container you want to stop

    • Run 'docker stop ' to stop the container

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain what are the tool you have been working. mostly open-source software
  • Q2. Azure monitor tools and Azure Network issue question

Interview Preparation Tips

Interview preparation tips for other job seekers - First round will be more technical and second round is more like technical and managerial

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What are the differences between a procedure and a function?
  • Q2. Write a query to find 3rd highest salary from each department
  • Q3. What is synonym.
  • Q4. What are the indexes you used ? Diff between bitmap and btree index
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Boxing Unboxing
  • Q2. Abstract class and interface

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