Upload Button Icon Add office photos

Filter interviews by

Dorco Consultant and Manager Interview Questions and Answers

Updated 7 Feb 2023

Dorco Consultant and Manager Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Feb 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Basic question is how we look our responsibe zone will contribute in a new brand which is yet to eastblish in a crowded market.
  • Ans. Should research before the brand & Company, as it's a Global brand so rating there. What they are looking and what they will do, accordingly you need to be sharing same. Yes be clear on your domain, confidence and have justification of your answer.
  • Answered Anonymously
  • Q2. On the progress card what and how I contributed to the organisation
  • Ans. Have a elaborate data which synchronised with your CV give some detail,examples on your successful implementation in the organisation which yeilded result.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence, hold to your positive area, Knowledge of the current scenario

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between display none, visibility hidden and opacity 0 in CSS
  • Ans. 

    display none hides the element completely, visibility hidden hides the element but still takes up space, opacity 0 makes the element transparent.

    • display none removes the element from the layout

    • visibility hidden hides the element but it still occupies space

    • opacity 0 makes the element transparent but still occupies space

    • Example: display: none; visibility: hidden; opacity: 0;

  • Answered by AI
  • Q2. Write a polyfill for javascript method "filter"
  • Ans. 

    Polyfill for JavaScript method 'filter'

    • Create a function called 'filter' that takes a callback function as an argument

    • Loop through the array and apply the callback function to each element

    • If the callback function returns true, add the element to a new array and return it

  • Answered by AI
  • Q3. Explain ShadowDOM
  • Ans. 

    Shadow DOM is a way to encapsulate the styling and structure of a web component, preventing styles from leaking out and clashing with the rest of the page.

    • Shadow DOM allows for creating self-contained components with their own DOM tree and styling.

    • It helps in preventing styles from the main document affecting the component and vice versa.

    • Shadow DOM can be created using the 'attachShadow' method in JavaScript.

    • It is comm...

  • Answered by AI
  • Q4. Explain Currying in Javascript
  • Ans. 

    Currying is a technique in JavaScript where a function with multiple arguments is transformed into a sequence of functions, each taking a single argument.

    • Currying allows you to create reusable functions with partial application of arguments.

    • It helps in creating more flexible and composable functions.

    • Example: const add = (a) => (b) => a + b; const add5 = add(5); console.log(add5(3)); // Output: 8

  • Answered by AI
  • Q5. What is Event Deligation in javascript
  • Ans. 

    Event delegation in JavaScript is a technique where a single event listener is attached to a parent element to handle events for multiple child elements.

    • Event delegation helps improve performance by reducing the number of event listeners.

    • It is useful for dynamically created elements or elements with similar behavior.

    • Event delegation works by utilizing event bubbling, where events on child elements bubble up to the pare

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TCS Associate Consultant interview:
  • Javascript Basics
  • React.Js
  • Javascript
Interview preparation tips for other job seekers - Having deep knowledge in Javascript is must for React.JS interview.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(7 Questions)

  • Q1. Introduce yourself
  • Q2. Explain the project you are working with
  • Ans. 

    I am currently working on a project to implement a new customer relationship management system for our client.

    • Analyzing client requirements and designing a customized CRM solution

    • Collaborating with developers to build and test the system

    • Training client staff on how to use the new CRM system

  • Answered by AI
  • Q3. Dependency Injections
  • Q4. OOPs Concept in detail
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation is a key principle in OOPs, where data is kept private and only accessible through public methods.

    • Inheritance allows classes to inherit attributes and methods from other classes.

    • Polymorphism allows objects to b...

  • Answered by AI
  • Q5. Action Filters and Middlewares
  • Q6. MVC architecture and design patterns
  • Q7. Solid principles and how they are used in project
  • Ans. 

    SOLID principles are design principles used in software development to make software more maintainable, flexible, and scalable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasse...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Managerial Round
  • Q2. Introduce yourself
  • Q3. Challenges you faced during the project
  • Ans. 

    Managing conflicting stakeholder priorities and tight deadlines

    • Balancing the needs and expectations of different stakeholders

    • Prioritizing tasks to meet project deadlines

    • Communicating effectively to manage expectations and resolve conflicts

  • Answered by AI
  • Q4. If you find a bug in production system how will you handle it
  • Ans. 

    I would immediately notify the appropriate team, document the bug, and work on a fix to deploy as soon as possible.

    • Notify the appropriate team or individual responsible for handling production issues

    • Document the bug thoroughly, including steps to reproduce and impact on system

    • Work on a fix or workaround to deploy as soon as possible

    • Communicate with stakeholders about the issue and resolution progress

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your projects and have idea about all the important concepts that are being used in the project.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Internal working of Hashmap
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap uses an array of buckets to store key-value pairs.

    • Keys are hashed to determine the index where the value will be stored.

    • In case of hash collisions, a linked list or balanced tree is used to store multiple entries in the same bucket.

    • HashMap allows one null key and multiple null values.

    • Example: HashMap&...

  • Answered by AI
  • Q2. JAVA 8 Stream API coding questions
Round 2 - Technical 

(2 Questions)

  • Q1. JAVA 8 advanced coding question
  • Q2. Specific questions on client requirements
Round 3 - HR 

(1 Question)

  • Q1. General questions on expectations

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Percentage and averages, number and alphabet series, compound interest (CI) and simple interest (SI).

Round 2 - Coding Test 

Basic programs include: 1. A program to perform the addition of two numbers, 2. A program to print a star pattern, and 3. A program to generate a triangle output, among others.

Round 3 - HR 

(4 Questions)

  • Q1. What challenges did we face?
  • Ans. 

    We faced challenges related to communication, resource allocation, and project timelines.

    • Communication breakdown between team members

    • Limited resources available for the project

    • Struggling to meet project deadlines

  • Answered by AI
  • Q2. Where do you see yourself in the next five years?
  • Ans. 

    In five years, I see myself as a senior consultant leading projects and mentoring junior team members.

    • Advancing to a senior consultant role

    • Leading projects and teams

    • Mentoring junior team members

    • Continuing professional development through training and certifications

  • Answered by AI
  • Q3. What strategies can be employed to overcome failures?
  • Ans. 

    Strategies to overcome failures include learning from mistakes, staying positive, seeking feedback, and setting new goals.

    • Learn from mistakes by analyzing what went wrong and how to improve

    • Stay positive and maintain a growth mindset to bounce back from setbacks

    • Seek feedback from mentors or colleagues to gain different perspectives

    • Set new goals and create a plan to move forward with renewed motivation

  • Answered by AI
  • Q4. Are you able to work effectively under pressure?
  • Ans. 

    Yes, I thrive under pressure and can effectively manage my time and priorities to meet deadlines.

    • I have experience working in fast-paced environments where quick decision-making and adaptability are key.

    • I am able to stay calm and focused under pressure, allowing me to deliver high-quality work even in challenging situations.

    • I prioritize tasks effectively to ensure that deadlines are met without compromising on quality.

    • ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Java Based Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I believe this is one of the best companies for a fresher to learn new concepts and explore various opportunities.

Consultant Interview Questions & Answers

Wipro user image rontala ramya

posted on 10 Nov 2024

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

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain inter company accounting
  • Ans. 

    Inter company accounting involves recording financial transactions between different entities within the same organization.

    • Inter company accounting ensures accurate financial reporting within a group of companies.

    • Transactions between entities are eliminated to avoid double counting.

    • Common inter company transactions include sales, purchases, loans, and transfers of assets.

    • Inter company accounts are used to track these t...

  • Answered by AI
  • Q2. Foreign Currency Revaluation
Round 2 - Technical 

(2 Questions)

  • Q1. Explain the process you follow for support project
  • Q2. How do you manage a team
  • Ans. 

    I manage a team by setting clear goals, providing support and resources, fostering open communication, and recognizing achievements.

    • Set clear goals and expectations for team members

    • Provide necessary support and resources for team to succeed

    • Foster open communication and encourage collaboration

    • Recognize and reward team achievements

    • Delegate tasks effectively based on team members' strengths and skills

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They may touch even the modules which haven't kept in the resume. it's better to be prepared for all.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What Is difference between SAP ERP AND S/4 HANA
  • Ans. 

    SAP ERP is the traditional enterprise resource planning software, while S/4 HANA is the next-generation ERP suite built on the SAP HANA platform.

    • SAP ERP is based on traditional on-premise architecture, while S/4 HANA is designed for cloud deployment.

    • SAP ERP uses a row-based database structure, while S/4 HANA utilizes an in-memory columnar database for faster data processing.

    • SAP ERP requires separate systems for transac...

  • Answered by AI
  • Q2. What are the steps for implementation in SAP
  • Ans. 

    Implementation steps in SAP involve planning, configuration, testing, training, and deployment.

    • 1. Planning phase involves defining project scope, objectives, and timeline.

    • 2. Configuration phase includes setting up SAP modules according to business requirements.

    • 3. Testing phase ensures that the system functions correctly and meets user needs.

    • 4. Training phase involves educating users on how to use the SAP system effecti...

  • Answered by AI
  • Q3. What is RICEF? explain
  • Ans. 

    RICEF is a prioritization framework used in project management to rank tasks based on their impact and effort required.

    • RICEF stands for Reach, Impact, Confidence, and Effort.

    • Reach refers to the number of people affected by the task.

    • Impact is the potential positive outcome of the task.

    • Confidence is how sure you are about the estimates for Reach and Impact.

    • Effort is the amount of time and resources needed to complete the...

  • Answered by AI
  • Q4. Have you worked with APP? EXPLAIN THE STEPS
  • Ans. 

    Yes, I have worked with APP. The steps involve designing, developing, testing, and deploying the application.

    • Design the user interface and functionality of the APP

    • Develop the APP using programming languages like Java, Swift, or React Native

    • Test the APP for bugs and errors

    • Deploy the APP to app stores or internal servers for users to access

  • Answered by AI
  • Q5. How would you configure material?
  • Ans. 

    Material can be configured by adjusting its properties and parameters to meet specific requirements.

    • Identify the specific requirements for the material

    • Adjust properties such as density, strength, and flexibility

    • Consider parameters like temperature resistance and chemical compatibility

    • Test the configured material to ensure it meets the desired specifications

  • Answered by AI
  • Q6. What is your role in your current company
  • Ans. 

    I am responsible for managing client relationships, providing strategic advice, and overseeing project implementation.

    • Managing client relationships

    • Providing strategic advice

    • Overseeing project implementation

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Consultant interview:
  • SAP SD
  • SAP FICO

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About my Previous Job
  • Q2. Compensation, Location, Project Details, Problem Solving
Round 2 - Assignment 

IT is a secret, I can't open that

Round 3 - One-on-one 

(2 Questions)

  • Q1. Why Consulting,
  • Q2. About the assignment, location

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well aware of your past experience
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(12 Questions)

  • Q1. What exact code to be written when there are two field in selection screen if one field is filled the display second field and in which event it need to be written.
  • Ans. 

    Use AT SELECTION-SCREEN OUTPUT event to display second field based on first field input.

    • Use AT SELECTION-SCREEN OUTPUT event to check if first field is filled.

    • If first field is filled, display the second field using the statement 'SET PF-STATUS'.

    • Example: AT SELECTION-SCREEN OUTPUT. IF sy-abcde = 'X'. SET PF-STATUS 'SECOND_FIELD'. ENDIF.

  • Answered by AI
  • Q2. Name the events in reporting and explain their uses?
  • Ans. 

    Events in reporting include initialization, start-of-selection, end-of-selection, top-of-page, end-of-page, and top-of-logical-page.

    • Initialization event is used to initialize variables and set initial values.

    • Start-of-selection event is used to fetch data from the database and perform calculations.

    • End-of-selection event is used to display the final output of the report.

    • Top-of-page event is used to display headers at the...

  • Answered by AI
  • Q3. While creating BADI implementation, what will get created Class method or interface explain? steps to implement BADI . name the BADI you have implemented.
  • Ans. 

    When creating BADI implementation, a class method is created. Steps include creating a class implementing the BADI interface and implementing the required methods.

    • Create a class implementing the BADI interface

    • Implement the required methods in the class

    • Activate the BADI implementation in the system

  • Answered by AI
  • Q4. What is CDS view, step to create, how CDS views can be used to display ALV ?
  • Ans. 

    CDS view is a virtual database table in SAP ABAP used for defining complex views. It can be used to display ALV.

    • CDS view is defined using ABAP Development Tools (ADT) in Eclipse.

    • Steps to create CDS view: Define view, define associations, define annotations.

    • CDS views can be used to display ALV by creating a custom ALV grid using the CDS view as the data source.

  • Answered by AI
  • Q5. Suppose TMG is generated and you have added one field and that field is not reflecting what will you do? and name the TMG events.
  • Ans. 

    If a field added to a TMG is not reflecting, check if the field is properly defined in the TMG structure and events are triggered correctly.

    • Check if the field is properly added to the TMG structure using SE11 or SE54.

    • Ensure that the events like INITIALIZATION, AT SELECTION-SCREEN, AT SELECTION-SCREEN OUTPUT, etc., are triggered correctly.

    • Debug the TMG program to see if the field value is being populated and displayed a

  • Answered by AI
  • Q6. Difference between Class and interface and Why oops ABAP is preferred?
  • Ans. 

    Classes are blueprints for objects with attributes and methods, while interfaces define a contract for classes to implement. ABAP is preferred for OOP due to its robustness and flexibility.

    • Classes are used to create objects with attributes and methods, while interfaces define a contract for classes to implement.

    • Classes can be instantiated to create objects, while interfaces cannot be instantiated.

    • ABAP is preferred for ...

  • Answered by AI
  • Q7. How will you integrate S/4 Hana and SAP Ariba? What are the way you can?
  • Ans. 

    Integrating S/4 Hana and SAP Ariba involves using SAP Cloud Platform Integration and SAP Ariba Network.

    • Use SAP Cloud Platform Integration to connect S/4 Hana and SAP Ariba

    • Leverage SAP Ariba Network for seamless integration and collaboration

    • Utilize standard integration content provided by SAP for faster implementation

    • Customize integration based on specific business requirements

    • Ensure data consistency and security during

  • Answered by AI
  • Q8. What is IDoc? what are the steps use to create field segment in IDOC? suppose you encountered how will you reprocess?
  • Ans. 

    IDoc is a data container used to exchange information between SAP systems or between an SAP system and an external system.

    • IDoc stands for Intermediate Document.

    • To create a field segment in IDoc, you need to define the segment structure in the IDoc definition using transaction WE31.

    • For reprocessing, you can use transaction BD87 to reprocess IDocs that have failed during processing.

  • Answered by AI
  • Q9. How may types of Transport request are there in SAP? which will be created during report creation? How SO10 objects are transported?
  • Ans. 

    There are three types of transport requests in SAP: Workbench request, Customizing request, and Transport of Copies.

    • Workbench request is created for ABAP development objects like programs, function modules, etc.

    • Customizing request is created for customizing objects like table entries, screen modifications, etc.

    • Transport of Copies request is created for transporting copies of objects from one system to another.

    • SO10 obje...

  • Answered by AI
  • Q10. How will you load image in Adobe form? How will you convert and Adobe form into Spanish or any other language?
  • Ans. 

    To load an image in Adobe form, use the 'Graphic' UI element. To convert an Adobe form into another language, use translation tools like SE63.

    • To load an image in Adobe form, use the 'Graphic' UI element and specify the image path.

    • For language conversion, use translation tools like SE63 to translate the text elements of the form into the desired language.

    • Make sure to maintain language-specific text elements for differen

  • Answered by AI
  • Q11. How to make any parameter or field mandatory? Ans: Obligatory
  • Ans. 

    Use the 'Obligatory' keyword to make a parameter or field mandatory in SAP ABAP.

    • Add 'Obligatory' keyword in the parameter declaration to make it mandatory

    • If the mandatory parameter is not filled, an error message will be displayed

    • Example: DATA lv_name TYPE string OBLIGATORY.

  • Answered by AI
  • Q12. Have you worked on indexes, i.e. , secondary indexes, how will you fetch value using secondary index in select query?
  • Ans. 

    Yes, I have worked on secondary indexes in SAP ABAP.

    • Secondary indexes are created to improve the performance of select queries by allowing faster access to data.

    • To fetch values using a secondary index in a select query, you can use the addition 'USING INDEX' followed by the name of the secondary index.

    • For example, SELECT * FROM table_name USING INDEX index_name WHERE condition.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No response after interview have given 80% correct. I have added Ariba as well i am not adding Ariba question. Prepare deep for the interview.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

I have three questions: 1. How to handle null values? 2. What are ranking functions? 3. Can you explain self joins?

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project description
  • Q2. Tools used
  • Ans. 

    I primarily use tools such as Microsoft Excel, PowerPoint, and Tableau for data analysis and visualization.

    • Microsoft Excel for data manipulation and analysis

    • PowerPoint for creating presentations

    • Tableau for data visualization

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly for scenario-based SQL questions for the coding round.

Dorco Interview FAQs

How many rounds are there in Dorco Consultant and Manager interview?
Dorco interview process usually has 2 rounds. The most common rounds in the Dorco interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

Dorco Consultant and Manager Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

5.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Compare Dorco with

TCS

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

Infosys

3.7
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