Premium Employer

i

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

TTEC India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TTEC India Software Engineer Interview Questions and Answers

Updated 14 Mar 2023

TTEC India Software Engineer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 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 - Aptitude Test 

1-hour exam, few math questions, and few technical were asked, and all were MCQs

Round 3 - Group Discussion 

Very general topics were asked to check our communication skills

Round 4 - Technical 

(3 Questions)

  • Q1. Intro, DBMS, SQL questions, OOPs concepts, and real-life examples, About the project I worked in, were asked. Most of the questions are based on the resume.
  • Q2. OOPs- inheritance, encapsulation code on it overloading, overriding concept and coding question
  • Q3. Coding questions on strings

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOPs concepts properly, understand the questions properly, and give the right answers. Deliver every answer with real life example.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. That place how I am work
  • Q2. What is software engineer
  • Ans. 

    A software engineer is a professional who designs, develops, and maintains software applications.

    • Designs and develops software applications

    • Uses programming languages and tools to write code

    • Tests and debugs software to ensure it functions properly

    • Collaborates with other engineers and stakeholders to ensure software meets requirements

    • Continuously learns and adapts to new technologies and industry trends

  • Answered by AI
  • Q3. What is technical science
  • Ans. 

    Technical science is the application of scientific principles and methods to solve practical problems in technology.

    • It involves the use of scientific knowledge to design, develop, and improve technology.

    • Examples include computer science, electrical engineering, and mechanical engineering.

    • Technical science is interdisciplinary, drawing on knowledge from physics, chemistry, and mathematics.

    • It is essential for innovation ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but I stayed test it lasted for about one hour 10 minutes this interview wanted to test both me knowledge and wanted to test both my knowledge and communication skill most of the question asked Tu Meri related to mine bi touch circular computer science related topics a started a lost of basic related to my projects

Interview Questionnaire 

1 Question

  • Q1. To develop a product catalogue in core Java using Maven.

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is object oriented programming
  • Ans. 

    Object oriented programming is a programming paradigm that uses objects to represent and manipulate data.

    • Objects encapsulate data and behavior

    • Classes define the blueprint for objects

    • Inheritance allows for code reuse and polymorphism

    • Examples include Java, C++, and Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to concepts and try to use basic approach

I applied via Newspaper Ad and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Group Discussion 

Group discussion,aptitude test

Round 2 - Aptitude Test 

Aptitude test

Interview Preparation Tips

Interview preparation tips for other job seekers - i am b.akhila iam studying in degree final year

I applied via Referral and was interviewed in Apr 2021. There were 7 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Name
  • Q2. Introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good

I applied via Campus Placement and was interviewed before Sep 2020. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basic knowledge about the topics in the resume

I applied via Referral and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test

Round 2 - Technical 

(1 Question)

  • Q1. Technical round was asked technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic should be strong in the programming language you know
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. Aptitude question
  • Q2. Explanation about my project
  • Ans. 

    I developed a web application for tracking personal fitness goals and progress.

    • Used HTML, CSS, and JavaScript for front-end development

    • Utilized Node.js and Express for back-end development

    • Implemented user authentication and data storage using MongoDB

    • Incorporated data visualization tools like Chart.js for displaying progress graphs

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is k in KNN algorithm ?
  • Ans. 

    k in KNN algorithm represents the number of nearest neighbors to consider when making a prediction.

    • k is a hyperparameter that is chosen by the user and determines how many neighbors to look at when classifying a new data point.

    • A smaller value of k can lead to overfitting, while a larger value can lead to underfitting.

    • For example, if k=3 in a KNN algorithm, the prediction for a new data point will be based on the majori

  • Answered by AI
  • Q2. A small riddle

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know all the concepts of your project

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 126 minutes
Round difficulty - Hard

This round consist of coding questions as well as mcqs based on aptitude as well as some domain sections. This round is hard.

  • Q1. 

    Maximum Path Sum in a Matrix

    Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...

  • Ans. 

    Find the maximum sum path in a matrix from top row to bottom row by moving down or diagonally.

    • Use dynamic programming to keep track of maximum sum at each cell.

    • At each cell, consider the maximum sum from the cell above, left diagonal, and right diagonal.

    • Add the current cell value to the maximum of the three possibilities.

    • Repeat this process for all cells in the matrix to find the maximum sum path.

  • Answered by AI
  • Q2. 

    Boolean Matrix Transformation Challenge

    Given a 2-dimensional boolean matrix mat of size N x M, your task is to modify the matrix such that if any element is 1, set its entire row and column to 1. Specifi...

  • Ans. 

    Modify a boolean matrix such that if any element is 1, set its entire row and column to 1.

    • Iterate through the matrix to find elements with value 1

    • Store the row and column indices of these elements

    • Update the entire row and column for each element found to be 1

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

In this round the interviewer ask few questions related to domain and at last he ask some behavioral questions.

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find the lengths and the last nodes

    • Align the starting points of the lists by adjusting the pointers

    • Traverse both lists simultaneously until a common node is found

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in DelhiEligibility criteriaNo criteriaQuess Corp interview preparation:Topics to prepare for the interview - Data structures knowledge, OOPs, Pointers, Dynamic programming and Recursion, Graphs, Hashmaps and Priority Queues, Operating system, DBMS, Networking, Arrays, Strings, Stacks, Trees, Pointers, OS Kernel, Deadlock, Virtual Memory, Memory Management, Paging, Segmentation, Puzzles and aptitudeTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be calm and have confidence . Confidence is the key to crack any interview. 
Tip 2 : Try to give maximum time on basics of a topic 
Tip 3 : Practice interview questions
Tip 4 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Put only those skills in resume which the company requires, but don't put false information in resume
Tip 2 : Write only those things in resume in which you are 100% confident
Tip 3 : Have projects in resume and prepare well for it
Tip 4 : Keep it short and crisp.
Tip 5 : Focus on important things in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

TTEC India Interview FAQs

How many rounds are there in TTEC India Software Engineer interview?
TTEC India interview process usually has 4 rounds. The most common rounds in the TTEC India interview process are Resume Shortlist, Aptitude Test and Group Discussion.
How to prepare for TTEC India 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 TTEC India. The most common topics and skills that interviewers at TTEC India expect are Application Development, CRM, Coding, Connect and Information Technology.
What are the top questions asked in TTEC India Software Engineer interview?

Some of the top questions asked at the TTEC India Software Engineer interview -

  1. OOPs- inheritance, encapsulation code on it overloading, overriding concept and...read more
  2. Coding questions on stri...read more

Tell us how to improve this page.

TTEC India Software Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Join TTEC India Spark your potential
TTEC India Software Engineer Salary
based on 10 salaries
₹5 L/yr - ₹20 L/yr
39% more than the average Software Engineer Salary in India
View more details

TTEC India Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Fraud Analyst
288 salaries
unlock blur

₹2.3 L/yr - ₹5 L/yr

Chat Support Executive
240 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

Fraud Prevention Representative
205 salaries
unlock blur

₹2.4 L/yr - ₹4.5 L/yr

Customer Service Representative
178 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Chat Associate
155 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Explore more salaries
Compare TTEC India with

Teleperformance

3.9
Compare

Concentrix Corporation

3.7
Compare

iEnergizer

4.6
Compare

WNS

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