Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Damco Solutions Team. If you also belong to the team, you can get access from here

Damco Solutions Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 478 Reviews

Filter interviews by

Damco Solutions Senior Software Engineer Interview Questions and Answers

Updated 7 Oct 2024

Damco Solutions Senior Software Engineer Interview Experiences

5 interviews found

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

(2 Questions)

  • Q1. Method overloading
  • Q2. Ref and out keywords
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Solid principle

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 5 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 - Technical 

(1 Question)

  • Q1. Prepare basic level of interview questions.
Round 3 - Technical 

(1 Question)

  • Q1. Prepare advanced-level interview questions
Round 4 - HR 

(1 Question)

  • Q1. Your work experience, more related questions, and communication check
Round 5 - One-on-one 

(1 Question)

  • Q1. Package discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a nice experience for my interview. It was remotely. Prepare your interview at the best level. All the basic concepts must be clear. Experience matters finally.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before May 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. 4 pillars of oops
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the 4 pillars of OOP

    • Encapsulation: Bundling data and methods that operate on the data into a single unit

    • Inheritance: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q2. Routing in MVC?
  • Ans. 

    Routing in MVC refers to the process of mapping URLs to controller actions in a web application.

    • Routing is the mechanism that directs incoming HTTP requests to the appropriate controller and action method in an MVC application.

    • Routes are defined in the RouteConfig.cs file in ASP.NET MVC applications.

    • Routes can be configured to include parameters that are passed to the controller action.

    • Routes can also include constrain...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions from asp.net

Skills evaluated in this interview

Damco Solutions interview questions for designations

 Software Engineer

 (3)

 Senior QA Engineer

 (1)

 .NET Software Developer

 (1)

 Senior Tester

 (1)

 Test Engineer

 (2)

 Manual Test Engineer

 (1)

 Diploma Mechanical Engineer

 (1)

 Associate Business Analyst

 (1)

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is the difference between map object and map
  • Ans. 

    Map object is an instance of Map class while map is a data structure that stores key-value pairs.

    • Map object is mutable while map is immutable

    • Map object can have any type of key while map keys are restricted to hashable types

    • Map object has methods like set(), get(), delete() while map has no such methods

    • Map object is used in object-oriented programming while map is used in functional programming

  • Answered by AI
  • Q2. Basically in the map object takes the input object and out put also return object but in the map takes input aray and return out put also aray

Interview Preparation Tips

Interview preparation tips for other job seekers - I think if any one read carefully some interview tips online questions and answers per day than easily crack

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. JavaScript array basedprogram questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Angular and JavaScript question
Round 3 - HR 

(1 Question)

  • Q1. Contribution to project and personal questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Sep 2024.

Round 1 - Coding Test 

I was given a test which was not that difficult

Round 2 - Behavioral 

(2 Questions)

  • Q1. Why are you leaving the current job
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Looking for new challenges and opportunities for growth

    • Interested in working in a more innovative environment

    • Seeking a change in company culture or work-life balance

  • Answered by AI
  • Q2. What's the driving factor for you to join Altair
  • Ans. 

    The innovative projects and collaborative work environment at Altair are the driving factors for me to join.

    • Innovative projects: I am excited about the opportunity to work on cutting-edge projects that push the boundaries of technology.

    • Collaborative work environment: I value teamwork and believe that working with talented individuals at Altair will help me grow professionally.

    • Company culture: I have heard great things ...

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

(1 Question)

  • Q1. What is sql server agent why can't we create objects of abstract class write extension method for abstract class SQL: SP vs Function, which one is faster, why? can I call SP from Function Microservice orch...
  • Ans. 

    SQL Server Agent is a job scheduling tool in SQL Server. Abstract classes cannot be instantiated. SPs are faster than functions. Microservice concepts. IEnumerable vs IQueryable.

    • SQL Server Agent is a job scheduling tool in SQL Server for automating tasks like backups, database maintenance, etc.

    • Abstract classes cannot be instantiated because they are incomplete and meant to be extended by subclasses.

    • Extension methods ca...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is record in c# write generic method to perform summation of 2 numeric type variable (int, double, float..) write test cases for Sum method which design pattern you used
  • Ans. 

    A record in C# is a data structure that stores a fixed number of fields of different data types.

    • A record in C# is similar to a struct in C++, containing fields to store data.

    • Example: 'public record Person { public string Name; public int Age; }'

    • Generic method for summation: 'public T Sum(T a, T b) where T : struct, IConvertible { return Convert.ToDouble(a) + Convert.ToDouble(b); }'

    • Test cases can include checking the su...

  • Answered by AI
  • Q2. This was the worst interview I have ever given. Interview got rescheduled 3 times. The panelist behaved so rudely, Why people wouldn't even care to show his face, it's literally very frustrating.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Hackearth test and contain rest api questions and coding questions

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

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Define oops concepts in brief.
  • Ans. 

    Object-oriented programming concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the ne

  • Answered by AI
  • Q2. Constructor based logical questions

Damco Solutions Interview FAQs

How many rounds are there in Damco Solutions Senior Software Engineer interview?
Damco Solutions interview process usually has 2 rounds. The most common rounds in the Damco Solutions interview process are Technical, Resume Shortlist and HR.
How to prepare for Damco Solutions Senior Software Engineer 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 Damco Solutions. The most common topics and skills that interviewers at Damco Solutions expect are REST API, SQL, Angularjs, Bootstrap and C#.
What are the top questions asked in Damco Solutions Senior Software Engineer interview?

Some of the top questions asked at the Damco Solutions Senior Software Engineer interview -

  1. What is the difference between map object and m...read more
  2. Routing in M...read more
  3. 4 pillars of o...read more

Tell us how to improve this page.

Damco Solutions Senior Software Engineer Interview Process

based on 4 interviews

1 Interview rounds

  • Technical Round
View more
Damco Solutions Senior Software Engineer Salary
based on 187 salaries
₹7.5 L/yr - ₹26.6 L/yr
18% more than the average Senior Software Engineer Salary in India
View more details

Damco Solutions Senior Software Engineer Reviews and Ratings

based on 43 reviews

3.7/5

Rating in categories

3.5

Skill development

3.4

Work-life balance

3.5

Salary

3.5

Job security

3.6

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 43 Reviews and Ratings
Senior Software Engineer
187 salaries
unlock blur

₹7.5 L/yr - ₹26.6 L/yr

Software Engineer
179 salaries
unlock blur

₹4 L/yr - ₹14.5 L/yr

Technical Specialist
62 salaries
unlock blur

₹11.8 L/yr - ₹30 L/yr

Senior Test Engineer
55 salaries
unlock blur

₹7.1 L/yr - ₹19 L/yr

Technical Lead
54 salaries
unlock blur

₹12.5 L/yr - ₹38 L/yr

Explore more salaries
Compare Damco Solutions with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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