Find Interview Questions for Top Companies
Csm technologies Interview Questions and Answers
Ques:- How aspirant are you to grow in career ?
Right Answer:
I am very aspirant to grow in my career. I am committed to continuous learning and seeking new challenges that will help me develop my skills and advance professionally.
Ques:- A travel agency makes a 10% commission on all of its travel bookings. Their current profit before taxes is $1MM, while the industry average ranges from $2MM to $3.5MM. Why are they making less than the industry average?
Right Answer:
The travel agency may be making less than the industry average due to factors such as higher operational costs, lower sales volume, less effective marketing strategies, or offering less competitive pricing compared to other agencies.
Ques:- What will you do when client is asking you to provide something which has no meaning?
Right Answer:
I would ask the client for clarification on their request, explain why it may not have meaning, and suggest alternative solutions that align with their goals.
Ques:- You have been retained joint by a disposable diaper company and a federal commission on waste management. Estimate the volume percentage of disposable diapers in the total U.S. household garbage.
Right Answer:
Disposable diapers make up approximately 3-4% of total U.S. household garbage by volume.
Ques:- Sql queries on Join, C, Data Structures (Mostly linked list, stack, queues), Basics of SDLC and Testing.
Right Answer:
To answer SQL queries on joins, you can use the following examples:

1. **Inner Join**:
```sql
SELECT a.column1, b.column2
FROM tableA a
INNER JOIN tableB b ON a.common_column = b.common_column;
```

2. **Left Join**:
```sql
SELECT a.column1, b.column2
FROM tableA a
LEFT JOIN tableB b ON a.common_column = b.common_column;
```

3. **Right Join**:
```sql
SELECT a.column1, b.column2
FROM tableA a
RIGHT JOIN tableB b ON a.common_column = b.common_column;
```

4. **Full Outer Join**:
```sql
SELECT a.column1, b.column2
FROM tableA a
FULL OUTER JOIN tableB b ON a.common_column = b.common_column;
``
Ques:- What is table in SQL server? What is ##table in SQL server?
Right Answer:
A table in SQL Server is a structured collection of data organized in rows and columns, where each row represents a record and each column represents a field of that record.

A `##table` in SQL Server is a global temporary table, which is accessible to any session and exists until all sessions referencing it are closed.
Ques:- What is the pivot operator in MS SQL Server2005? What is the use of it and how do we use it
Right Answer:
The PIVOT operator in MS SQL Server 2005 is used to transform rows into columns, allowing for easier data analysis and reporting. It is typically used to aggregate data and present it in a more readable format.

To use the PIVOT operator, you follow this syntax:

```sql
SELECT <non-pivoted column>, [column1], [column2], ...
FROM
(
SELECT <non-pivoted column>, <pivoted column>, <aggregate function>
FROM <table>
) AS SourceTable
PIVOT
(
<aggregate function>(<pivoted column>)
FOR <pivoted column> IN ([column1], [column2], ...)
) AS PivotTable;
```

Replace `<non-pivoted column>`, `<pivoted column>`, `<aggregate function>`, and `<table>` with your specific data and requirements.
Ques:- Can you explain the key principles of the Agile Manifesto
Right Answer:
The Agile Manifesto values:

* **Individuals and interactions** over processes and tools.
* **Working software** over comprehensive documentation.
* **Customer collaboration** over contract negotiation.
* **Responding to change** over following a plan.

That is, while the items on the right have value, we value the items on the left more.
Ques:- How do you handle scope creep or changes during a sprint
Right Answer:
During a sprint, I generally avoid scope creep. If a change request is small and doesn't impact the sprint goal, the team can discuss and decide if it can be included. If the change is significant, it goes into the product backlog to be prioritized for a future sprint.
Ques:- How do you prioritize features or tasks in an Agile sprint
Right Answer:
We prioritize features or tasks in an Agile sprint using a combination of factors like business value, risk, effort/size, dependencies, and urgency. Product Owner usually leads this, using techniques like MoSCoW (Must have, Should have, Could have, Won't have) or story pointing, to ensure the most valuable items are tackled first.
Ques:- How do you measure success in an Agile project, both in terms of output and team health
Right Answer:
Success in Agile is measured by:

* **Output:** Delivering valuable, working software frequently; achieving the product vision; meeting business goals; customer satisfaction; and predictability (consistent delivery).
* **Team Health:** Team morale; continuous improvement (velocity trends, retrospectives leading to action); collaboration; self-organization; and sustainable pace.
Ques:- What is Agile methodology, and how does it differ from traditional project management approaches
Right Answer:
Agile is an iterative and incremental approach to project management that focuses on collaboration, flexibility, and customer satisfaction. Unlike traditional, sequential (waterfall) methods, Agile embraces change throughout the project lifecycle through short development cycles called sprints.
Ques:- What was the most significant change made in your company in the last six months which directly affected you, & how successfully do you think you implemented this change?
Right Answer:
The most significant change was the implementation of a new ERP system that streamlined our financial processes. I successfully adapted to this change by attending training sessions, collaborating with my team to address challenges, and ensuring a smooth transition by updating our workflows accordingly.
Ques:- What is the difference between an organization and division in Siebel?
Right Answer:
In Siebel, an organization is a higher-level entity that represents a company or a business unit, while a division is a subset of an organization that typically represents a specific functional area or department within that organization.
AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users