Upload Button Icon Add office photos
Engaged Employer

i

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

Tech Mahindra Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 34.4k Reviews

Filter interviews by

Tech Mahindra CCE Interview Questions and Answers

Updated 2 Nov 2021

Tech Mahindra CCE Interview Experiences

3 interviews found

CCE Interview Questions & Answers

user image Anonymous

posted on 2 Nov 2021

Interview Questionnaire 

1 Question

  • Q1. About school life

Interview Preparation Tips

Interview preparation tips for other job seekers - Show confident and maintain eye contact

CCE Interview Questions & Answers

user image Aarti Thareja

posted on 15 Jul 2021

Interview Questionnaire 

1 Question

  • Q1. Very basic about you and about your past experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

CCE Interview Questions Asked at Other Companies

Q1. Why the os is installed in c drive only and why not in d or e or ... read more
Q2. which positioin do you want to be in?
asked in iEnergizer
Q3. What you know about Customer service
Q4. What if a customer ask you to share your personal information
Q5. What is e commerce 1st question

CCE Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2020

I applied via Walk-in and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. 1.Introduce your self .
  • Q2. What is the customer service
  • Ans. 

    Customer service refers to the assistance and support provided to customers before, during, and after purchasing a product or service.

    • Customer service involves addressing customer inquiries, concerns, and complaints.

    • It includes providing information about products or services, helping customers make purchasing decisions, and resolving issues.

    • Customer service can be provided through various channels such as phone, email...

  • Answered by AI
  • Q3. What is BPO
  • Ans. 

    BPO stands for Business Process Outsourcing. It involves contracting specific business processes to a third-party service provider.

    • BPO is the practice of outsourcing non-core business functions to external vendors.

    • It helps companies focus on their core competencies and reduce costs.

    • Common BPO services include customer support, data entry, payroll processing, and IT support.

    • Examples of BPO companies include Accenture, I

  • Answered by AI
  • Q4. How spend your yesterday/ weekend
  • Q5. What was the your responsibilities in previous job tell us something about your experience .

Interview Preparation Tips

Interview preparation tips for other job seekers - If are fresher so please don't be nervous in front of interviewer be confident.when will you give the interview so should keep smile on your face.

Interview questions from similar companies

CCE Interview Questions & Answers

Mphasis user image Anonymous

posted on 28 Oct 2021

I applied via Job Portal and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Tell you about your self
  • Q2. Why do you Want this job
  • Q3. What are you biggest weakness
  • Q4. What are you biggest strengths
  • Q5. What's your ideal company
  • Q6. Why should We hire you
  • Q7. What attracted you to this company
  • Q8. What did you Like least about your last job

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Do your homework .
2.Mirron the interviewers tyle .
3.share your story .
4.Prepare a few questions.
5.Say thanks.

CCE Interview Questions & Answers

Accenture user image Anonymous

posted on 10 Sep 2020

I applied via Naukri.com and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1. Introduction yourself 2.Why do you want to join this?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be fluent in English and your voice will be clear and be carefully to responses thier question

CCE Interview Questions & Answers

TCS user image Anonymous

posted on 30 Dec 2020

I applied via Referral and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Golden rules of accounting?, introduce yourself
  • Ans. 

    The golden rules of accounting are basic principles that guide the recording of financial transactions.

    • The first golden rule is the Personal Account rule, which states that all personal accounts are debited for the receiver and credited for the giver.

    • The second golden rule is the Real Account rule, which states that all real accounts are debited for what comes in and credited for what goes out.

    • The third golden rule is ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience
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 Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(7 Questions)

  • Q1. How do you optimize SQL queries?
  • Ans. 

    Optimizing SQL queries involves using indexes, avoiding unnecessary joins, and optimizing the query structure.

    • Use indexes on columns frequently used in WHERE clauses

    • Avoid using SELECT * and only retrieve necessary columns

    • Optimize joins by using INNER JOIN instead of OUTER JOIN when possible

    • Use EXPLAIN to analyze query performance and make necessary adjustments

  • Answered by AI
  • Q2. How do you do performance optimization in Spark. Tell how you did it in you project.
  • Ans. 

    Performance optimization in Spark involves tuning configurations, optimizing code, and utilizing caching.

    • Tune Spark configurations such as executor memory, number of executors, and shuffle partitions.

    • Optimize code by reducing unnecessary shuffles, using efficient transformations, and avoiding unnecessary data movements.

    • Utilize caching to store intermediate results in memory and avoid recomputation.

    • Example: In my projec...

  • Answered by AI
  • Q3. What is SparkContext and SparkSession?
  • Ans. 

    SparkContext is the main entry point for Spark functionality, while SparkSession is the entry point for Spark SQL.

    • SparkContext is the entry point for low-level API functionality in Spark.

    • SparkSession is the entry point for Spark SQL functionality.

    • SparkContext is used to create RDDs (Resilient Distributed Datasets) in Spark.

    • SparkSession provides a unified entry point for reading data from various sources and performing

  • Answered by AI
  • Q4. When a spark job is submitted, what happens at backend. Explain the flow.
  • Ans. 

    When a spark job is submitted, various steps are executed at the backend to process the job.

    • The job is submitted to the Spark driver program.

    • The driver program communicates with the cluster manager to request resources.

    • The cluster manager allocates resources (CPU, memory) to the job.

    • The driver program creates DAG (Directed Acyclic Graph) of the job stages and tasks.

    • Tasks are then scheduled and executed on worker nodes ...

  • Answered by AI
  • Q5. Calculate second highest salary using SQL as well as pyspark.
  • Ans. 

    Calculate second highest salary using SQL and pyspark

    • Use SQL query with ORDER BY and LIMIT to get the second highest salary

    • In pyspark, use orderBy() and take() functions to achieve the same result

  • Answered by AI
  • Q6. 2 types of modes for Spark architecture ?
  • Ans. 

    The two types of modes for Spark architecture are standalone mode and cluster mode.

    • Standalone mode: Spark runs on a single machine with a single JVM and is suitable for development and testing.

    • Cluster mode: Spark runs on a cluster of machines managed by a cluster manager like YARN or Mesos for production workloads.

  • Answered by AI
  • Q7. If you want very less latency - which is better standalone or client mode?
  • Ans. 

    Client mode is better for very less latency due to direct communication with the cluster.

    • Client mode allows direct communication with the cluster, reducing latency.

    • Standalone mode requires an additional layer of communication, increasing latency.

    • Client mode is preferred for real-time applications where low latency is crucial.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based. Write SQL and pyspark code for a dataset.
  • Q2. If you have to find latest record based on latest timestamp in a table for a particular customer(table is having history) , how will you do it. Self join and nested query will be expensive. Optimized query...

Interview Preparation Tips

Topics to prepare for LTIMindtree Data Engineer interview:
  • SQL
  • pyspark
  • ETL
Interview preparation tips for other job seekers - L2 was scheduled next day to L1 so the process is fast. Brush up your practical knowledge more.

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

Genpact user image Sashikanta Parida

posted on 17 Dec 2024

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are different type of joins available in Databricks?
  • Ans. 

    Different types of joins available in Databricks include inner join, outer join, left join, right join, and cross join.

    • Inner join: Returns only the rows that have matching values in both tables.

    • Outer join: Returns all rows when there is a match in either table.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows ...

  • Answered by AI
  • Q2. How do you make your data pipeline fault tolerant?
  • Ans. 

    Implementing fault tolerance in a data pipeline involves redundancy, monitoring, and error handling.

    • Use redundant components to ensure continuous data flow

    • Implement monitoring tools to detect failures and bottlenecks

    • Set up automated alerts for immediate response to issues

    • Design error handling mechanisms to gracefully handle failures

    • Use checkpoints and retries to ensure data integrity

  • Answered by AI
  • Q3. What is AutoLoader?
  • Ans. 

    AutoLoader is a feature in data engineering that automatically loads data from various sources into a data warehouse or database.

    • Automates the process of loading data from different sources

    • Reduces manual effort and human error

    • Can be scheduled to run at specific intervals

    • Examples: Apache Nifi, AWS Glue

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How do you connect to different services in Azure?
  • Ans. 

    To connect to different services in Azure, you can use Azure SDKs, REST APIs, Azure Portal, Azure CLI, and Azure PowerShell.

    • Use Azure SDKs for programming languages like Python, Java, C#, etc.

    • Utilize REST APIs to interact with Azure services programmatically.

    • Access and manage services through the Azure Portal.

    • Leverage Azure CLI for command-line interface interactions.

    • Automate tasks using Azure PowerShell scripts.

  • Answered by AI
  • Q2. What are linked Services?
  • Ans. 

    Linked Services are connections to external data sources or destinations in Azure Data Factory.

    • Linked Services define the connection information needed to connect to external data sources or destinations.

    • They can be used in Data Factory pipelines to read from or write to external systems.

    • Examples of Linked Services include Azure Blob Storage, Azure SQL Database, and Amazon S3.

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

(1 Question)

  • Q1. Sql commands group by and order by
Round 2 - Technical 

(1 Question)

  • Q1. Cicd pipeline and kafka
Round 3 - Client Interview 

(1 Question)

  • Q1. Reparitition and pipelines
Round 4 - Technical 

(1 Question)

  • Q1. Joins operations

Data Engineer Interview Questions & Answers

Wipro user image Lakshmi Narayana

posted on 27 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain adf questions in detail
  • Ans. 

    ADF questions refer to Azure Data Factory questions which are related to data integration and data transformation processes.

    • ADF questions are related to Azure Data Factory, a cloud-based data integration service.

    • These questions may involve data pipelines, data flows, activities, triggers, and data movement.

    • Candidates may be asked about their experience with designing, monitoring, and managing data pipelines in ADF.

    • Exam...

  • Answered by AI
  • Q2. Project related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Project data related questions
  • Q2. Databricks and SQL interview questions

Tech Mahindra Interview FAQs

What are the top questions asked in Tech Mahindra CCE interview?

Some of the top questions asked at the Tech Mahindra CCE interview -

  1. What is the customer serv...read more
  2. What is ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Tech Mahindra CCE Salary
based on 58 salaries
₹1.1 L/yr - ₹4.2 L/yr
5% more than the average CCE Salary in India
View more details

Tech Mahindra CCE Reviews and Ratings

based on 18 reviews

2.7/5

Rating in categories

2.4

Skill development

2.2

Work-life balance

1.9

Salary

2.3

Job security

2.6

Company culture

2.3

Promotions

2.3

Work satisfaction

Explore 18 Reviews and Ratings
Software Engineer
26.3k salaries
unlock blur

₹2 L/yr - ₹9.1 L/yr

Senior Software Engineer
21.3k salaries
unlock blur

₹5.5 L/yr - ₹23.1 L/yr

Technical Lead
11.6k salaries
unlock blur

₹9.3 L/yr - ₹37 L/yr

Associate Software Engineer
5.4k salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Team Lead
4.9k salaries
unlock blur

₹5.2 L/yr - ₹17 L/yr

Explore more salaries
Compare Tech Mahindra with

Infosys

3.6
Compare

Cognizant

3.8
Compare

Accenture

3.8
Compare

Wipro

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