Find Interview Questions for Top Companies
Infostretch Interview Questions and Answers
Ques:- Explain how best you can deliver the inputs for such kind of project.
Right Answer:
To deliver the inputs for a construction project effectively, I would:

1. **Conduct Thorough Planning**: Define project scope, objectives, and deliverables clearly.
2. **Engage Stakeholders**: Collaborate with all stakeholders to gather requirements and expectations.
3. **Develop a Detailed Schedule**: Create a timeline with milestones for each phase of the project.
4. **Allocate Resources**: Identify and assign the necessary resources, including labor, materials, and equipment.
5. **Establish Communication Channels**: Set up regular meetings and updates to ensure everyone is informed and aligned.
6. **Implement Risk Management**: Identify potential risks early and develop mitigation strategies.
7. **Monitor Progress**: Use project management tools to track progress and make adjustments as needed.
8. **Ensure Compliance**: Adhere to safety regulations, building codes, and quality standards throughout the project.
Ques:- How many types of projects are there in project module?
Right Answer:
There are typically three types of projects in a project module:

1. **Internal Projects**
2. **External Projects**
3. **Research and Development (R&D) Projects**
Ques:- What is MPMM?
Right Answer:
MPMM stands for "Multi-Project Management Methodology," which is a framework designed to manage multiple projects simultaneously, ensuring that resources are allocated efficiently and project goals are aligned with organizational objectives.
Ques:- ISO 9001 2008 Claues
Right Answer:
ISO 9001:2008 has eight main clauses:

1. **Scope** - Defines the applicability of the standard.
2. **Normative References** - Lists documents that are essential for the application of the standard.
3. **Terms and Definitions** - Provides definitions of key terms used in the standard.
4. **Quality Management System** - Outlines the requirements for establishing and maintaining a quality management system.
5. **Management Responsibility** - Details the responsibilities of top management in ensuring the effectiveness of the quality management system.
6. **Resource Management** - Covers the management of resources needed for the quality management system.
7. **Product Realization** - Describes the processes involved in delivering products or services.
8. **Measurement, Analysis, and Improvement** - Focuses on monitoring, measuring, and improving the quality management system.
Ques:- What are the most likely quality consequences of choosing an inappropriate life cycle model for a software project?
Right Answer:
Choosing an inappropriate life cycle model for a software project can lead to poor quality outcomes such as increased defects, missed requirements, lack of proper testing, delayed delivery, and higher costs due to rework and maintenance.
Ques:- What is merging?
Right Answer:
Merging is the process of combining data from two or more sources into a single dataset, often used to consolidate records or integrate changes in data. In SQL Server, this can be done using the MERGE statement, which allows you to insert, update, or delete records in a target table based on matching conditions with a source table.
Ques:- What is SQL Delete Statement ?
Right Answer:
The SQL DELETE statement is used to remove one or more rows from a table based on a specified condition. The basic syntax is:

```sql
DELETE FROM table_name WHERE condition;
```

If no condition is specified, all rows in the table will be deleted.
Ques:- Can we generate a trigger for two tables? if so what is the query to generate a trigger for two tables employye table and department table with employee having department no.
Right Answer:
No, a single trigger cannot be directly created for two tables in SQL Server. However, you can create separate triggers for each table. Here’s an example of how to create triggers for the `employee` and `department` tables:

```sql
CREATE TRIGGER trg_employee
ON employee
AFTER INSERT, UPDATE
AS
BEGIN
-- Trigger logic for employee table
END;

CREATE TRIGGER trg_department
ON department
AFTER INSERT, UPDATE
AS
BEGIN
-- Trigger logic for department table
END;
```
Ques:- What kind of bean(entity/session) will you use if there are no database transactions and all you use is a read-only database.
Asked In :- infostretch,
Ques:- How to convert a number to a string?
Comments
Admin Feb 2, 2020

To convert a number into a string, we should use the inbuilt function str(). If we need hexadecimal or octal representation, we must apply the inbuilt function hex() or oct(). Converting number to a String is the basic interview question that should be known mandatorily by any fresher before attending the Python interview.

AmbitionBox Logo

What makes Takluu valuable for interview preparation?

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