Upload Button Icon Add office photos

Filter interviews by

Telecall Technology Interview Questions and Answers

Updated 11 Jun 2025
Popular Designations

20 Interview questions

An Application Support Engineer was asked 1w ago
Q. What is the difference between a view and a materialized view?
Ans. 

Views are virtual tables; materialized views store data physically for faster access.

  • A view is a virtual table based on a SQL query, while a materialized view stores the result set physically.

  • Views are updated dynamically with the underlying data changes; materialized views require manual refresh to update.

  • Example of a view: SELECT * FROM employees WHERE department = 'Sales';

  • Example of a materialized view: CREATE ...

View all Application Support Engineer interview questions
An Application Support Engineer was asked 1w ago
Q. What is the syntax of a stored procedure?
Ans. 

Stored procedures are precompiled SQL statements that can be executed to perform operations on a database.

  • Syntax: CREATE PROCEDURE procedure_name AS SQL_statement;

  • Example: CREATE PROCEDURE GetEmployee AS SELECT * FROM Employees;

  • Parameters can be added: CREATE PROCEDURE GetEmployeeByID @ID INT AS SELECT * FROM Employees WHERE EmployeeID = @ID;

  • Stored procedures can return values: CREATE PROCEDURE GetTotalEmployees A...

View all Application Support Engineer interview questions
An Application Support Engineer was asked 1w ago
Q. How do you search and replace a pattern with another pattern in a Unix file?
Ans. 

Use 'sed' command in Unix to search and replace patterns in files efficiently.

  • Use 'sed' command: `sed -i 's/old_pattern/new_pattern/g' filename`

  • The '-i' option edits the file in place.

  • The 's' command stands for substitute.

  • The 'g' flag at the end replaces all occurrences in the line.

View all Application Support Engineer interview questions
An Application Support Engineer was asked 1w ago
Q. What is RDBMS?
Ans. 

RDBMS stands for Relational Database Management System, which organizes data into tables for easy access and management.

  • Data is stored in tables (e.g., MySQL, PostgreSQL).

  • Supports SQL (Structured Query Language) for querying data.

  • Ensures data integrity through constraints (e.g., primary keys, foreign keys).

  • Allows relationships between tables (e.g., one-to-many, many-to-many).

  • Examples include Oracle, Microsoft SQL ...

View all Application Support Engineer interview questions
An Application Support Engineer was asked 1w ago
Q. How would you find files larger than 10GB?
Ans. 

Use the 'find' command to locate files larger than 10GB in a specified directory.

  • Use the command: find /path/to/directory -type f -size +10G

  • Replace '/path/to/directory' with the actual directory you want to search.

  • The '-type f' option ensures only files are considered, not directories.

  • The '+10G' specifies files larger than 10 gigabytes.

View all Application Support Engineer interview questions
An Application Support Engineer was asked 2w ago
Q. How would you fetch files older than 10 days using Linux commands?
Ans. 

Use the 'find' command to locate files older than 10 days in Linux.

  • Use the command: find /path/to/directory -type f -mtime +10

  • The '-type f' option specifies that we are looking for files.

  • The '-mtime +10' option finds files modified more than 10 days ago.

  • To list files in a specific directory, replace '/path/to/directory' with the actual path.

  • You can also use '-ls' to list details: find /path/to/directory -type f -m...

View all Application Support Engineer interview questions
An Application Support Engineer was asked 2w ago
Q. How can you determine the file containing a specific error pattern in Linux?
Ans. 

Use tools like grep, find, and log files to locate error patterns in Linux files.

  • Use 'grep' to search for patterns: `grep 'error_pattern' /path/to/files/*`.

  • Combine 'find' with 'grep' to search recursively: `find /path/to/dir -type f -exec grep -H 'error_pattern' {} \;`.

  • Check log files in '/var/log/' for application-specific errors, e.g., `cat /var/log/syslog | grep 'error_pattern'`.

  • Use 'tail' to monitor log files ...

View all Application Support Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked 4mo ago
Q. What will you do when the application is down?
Ans. 

I will investigate the root cause, communicate with stakeholders, and work on resolving the issue as quickly as possible.

  • Investigate the logs to identify the root cause of the issue

  • Communicate with stakeholders about the downtime and expected resolution time

  • Work on resolving the issue by troubleshooting and fixing the underlying problem

  • Implement preventive measures to avoid similar downtime in the future

View all Software Engineer interview questions
A Software Engineer was asked 4mo ago
Q. Write an Oracle SQL query to fetch the second highest salary of an employee.
Ans. 

Use SQL query with subquery to fetch second highest salary of an employee in Oracle.

  • Use ORDER BY and LIMIT to get the second highest salary.

  • Use a subquery to exclude the highest salary and then find the maximum from the remaining salaries.

  • Example: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

View all Software Engineer interview questions
A Software Engineer was asked 4mo ago
Q. How do you fetch and delete duplicate records in Oracle SQL?
Ans. 

Use a subquery to fetch and delete duplicate records in Oracle SQL.

  • Use a subquery to identify duplicate records based on a unique identifier

  • Use the DELETE statement with the subquery to remove the duplicate records

  • Ensure to backup the data before deleting duplicates

View all Software Engineer interview questions

Telecall Technology Interview Experiences

5 interviews found

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Fetch second Highest salary in sql.
  • Ans. 

    To fetch the second highest salary in SQL, use subqueries or the DISTINCT keyword with ORDER BY and LIMIT.

    • Use a subquery: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

    • Use DISTINCT: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

    • Use ROW_NUMBER() function: SELECT salary FROM (SELECT salary, ROW_NUMBER() OVER (ORDER BY salary DESC) AS rank FROM employ...

  • Answered by AI
  • Q2. Create a shell script to print even numbers.
  • Ans. 

    A shell script to print even numbers within a specified range.

    • Use a for loop to iterate through a range of numbers.

    • Check if a number is even using the modulus operator (%).

    • Print the number if it is even.

    • Example: for i in {1..10}; do if [ $((i % 2)) -eq 0 ]; then echo $i; fi; done

  • Answered by AI
  • Q3. How to know in which file the pattern error exists in linux?
  • Ans. 

    Use tools like grep, find, and log files to locate error patterns in Linux files.

    • Use 'grep' to search for patterns: `grep 'error_pattern' /path/to/files/*`.

    • Combine 'find' with 'grep' to search recursively: `find /path/to/dir -type f -exec grep -H 'error_pattern' {} \;`.

    • Check log files in '/var/log/' for application-specific errors, e.g., `cat /var/log/syslog | grep 'error_pattern'`.

    • Use 'tail' to monitor log files in re...

  • Answered by AI
  • Q4. Fetch last 10 days older files in linux.
  • Ans. 

    Use the 'find' command to locate files older than 10 days in Linux.

    • Use the command: find /path/to/directory -type f -mtime +10

    • The '-type f' option specifies that we are looking for files.

    • The '-mtime +10' option finds files modified more than 10 days ago.

    • To list files in a specific directory, replace '/path/to/directory' with the actual path.

    • You can also use '-ls' to list details: find /path/to/directory -type f -mtime ...

  • Answered by AI
  • Q5. Fetch duplicate records in sql
  • Ans. 

    Use SQL queries to identify and fetch duplicate records based on specific columns.

    • Use the GROUP BY clause to group records by the column(s) you want to check for duplicates.

    • Utilize the HAVING clause to filter groups that have a count greater than 1.

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1;

    • You can fetch all columns of duplicate records by joining the result with t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The only tips to be confident and give your 100℅
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your notice period and why do you want to leave your current organization.
  • Ans. 

    Notice period is 2 months. Seeking new challenges and growth opportunities.

    • Notice period is 2 months

    • Looking for new challenges and growth opportunities

    • Current organization lacks opportunities for career advancement

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Fetch second highest salary of an employee in oracle SQL.
  • Ans. 

    Use SQL query with subquery to fetch second highest salary of an employee in Oracle.

    • Use ORDER BY and LIMIT to get the second highest salary.

    • Use a subquery to exclude the highest salary and then find the maximum from the remaining salaries.

    • Example: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

  • Answered by AI
  • Q2. Fetch and delete duplicate records in oracle SQL.
  • Ans. 

    Use a subquery to fetch and delete duplicate records in Oracle SQL.

    • Use a subquery to identify duplicate records based on a unique identifier

    • Use the DELETE statement with the subquery to remove the duplicate records

    • Ensure to backup the data before deleting duplicates

  • Answered by AI
  • Q3. Difference between primary and foreign key.
  • Ans. 

    Primary key uniquely identifies a record in a table, while foreign key establishes a link between two tables.

    • Primary key is a column in a table that uniquely identifies each record.

    • Foreign key is a column in a table that refers to the primary key in another table.

    • Primary key cannot have NULL values, while foreign key can have NULL values.

    • Primary key ensures data integrity and enforces uniqueness, while foreign key main...

  • Answered by AI
  • Q4. What will you do when application is down?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and comfortable with your answers.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Find files larger than 10GB.
  • Ans. 

    Use the 'find' command to locate files larger than 10GB in a specified directory.

    • Use the command: find /path/to/directory -type f -size +10G

    • Replace '/path/to/directory' with the actual directory you want to search.

    • The '-type f' option ensures only files are considered, not directories.

    • The '+10G' specifies files larger than 10 gigabytes.

  • Answered by AI
  • Q2. Search and replace pattern with another pattern in Unix file.
  • Ans. 

    Use 'sed' command in Unix to search and replace patterns in files efficiently.

    • Use 'sed' command: `sed -i 's/old_pattern/new_pattern/g' filename`

    • The '-i' option edits the file in place.

    • The 's' command stands for substitute.

    • The 'g' flag at the end replaces all occurrences in the line.

  • Answered by AI
  • Q3. Syntax of stored procedure.
  • Ans. 

    Stored procedures are precompiled SQL statements that can be executed to perform operations on a database.

    • Syntax: CREATE PROCEDURE procedure_name AS SQL_statement;

    • Example: CREATE PROCEDURE GetEmployee AS SELECT * FROM Employees;

    • Parameters can be added: CREATE PROCEDURE GetEmployeeByID @ID INT AS SELECT * FROM Employees WHERE EmployeeID = @ID;

    • Stored procedures can return values: CREATE PROCEDURE GetTotalEmployees AS RET...

  • Answered by AI
  • Q4. What is rdbms.
  • Ans. 

    RDBMS stands for Relational Database Management System, which organizes data into tables for easy access and management.

    • Data is stored in tables (e.g., MySQL, PostgreSQL).

    • Supports SQL (Structured Query Language) for querying data.

    • Ensures data integrity through constraints (e.g., primary keys, foreign keys).

    • Allows relationships between tables (e.g., one-to-many, many-to-many).

    • Examples include Oracle, Microsoft SQL Serve...

  • Answered by AI
  • Q5. Difference between view and materialized view.
  • Ans. 

    Views are virtual tables; materialized views store data physically for faster access.

    • A view is a virtual table based on a SQL query, while a materialized view stores the result set physically.

    • Views are updated dynamically with the underlying data changes; materialized views require manual refresh to update.

    • Example of a view: SELECT * FROM employees WHERE department = 'Sales';

    • Example of a materialized view: CREATE MATER...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm and composed and be you.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Nth Highest Salary in SQL. Fetch Duplicate records in SQL. Write shell script to print febonicci series.
  • Ans. 

    SQL query to find Nth highest salary, fetch duplicate records, and shell script for Fibonacci series.

    • To find Nth highest salary in SQL, use the 'ROW_NUMBER()' function with 'ORDER BY' and 'LIMIT'. Example: SELECT salary FROM (SELECT salary, ROW_NUMBER() OVER (ORDER BY salary DESC) AS rn FROM employees) AS temp WHERE rn = N;

    • To fetch duplicate records in SQL, use the 'GROUP BY' and 'HAVING' clauses. Example: SELECT colum...

  • Answered by AI
  • Q2. Use dense rank function
  • Ans. 

    Dense rank function assigns a rank to each row within a partition of a result set, with no gaps in the ranking values.

    • Use the DENSE_RANK() function in SQL to assign a unique rank to each row within a partition

    • It is similar to the RANK() function but does not leave gaps in the ranking values

    • Example: SELECT column1, DENSE_RANK() OVER (PARTITION BY column2 ORDER BY column3) AS dense_rank FROM table_name

  • Answered by AI
  • Q3. Use Having Clause
  • Ans. 

    The HAVING clause is used in SQL to filter groups based on a specified condition.

    • HAVING clause is used with the GROUP BY clause to filter groups based on a specified condition

    • It is used to filter the results after grouping has been done

    • It is similar to the WHERE clause but operates on grouped records

  • Answered by AI
  • Q4. Use For loop to fetch febonnici series
  • Ans. 

    Using a for loop to fetch the Fibonacci series.

    • Initialize variables for the first two numbers in the series (0 and 1).

    • Use a for loop to calculate the next number in the series by adding the previous two numbers.

    • Store each number in the series in an array.

    • Continue the loop until reaching the desired length of the series.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on you confidence and communication skills.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Nov 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 - Technical 

(5 Questions)

  • Q1. Write a shell script to check system health.
  • Ans. 

    A shell script to check system health

    • Check CPU usage using 'top' or 'ps' command

    • Check memory usage using 'free' or 'top' command

    • Check disk usage using 'df' command

    • Check network connectivity using 'ping' command

    • Check system load using 'uptime' command

    • Check running processes using 'ps' command

  • Answered by AI
  • Q2. Highest salary in SQL
  • Ans. 

    The highest salary in SQL can vary depending on factors such as location, experience, and industry.

    • The highest salary in SQL is typically found in roles such as database administrators, data engineers, and data architects.

    • Factors that can influence the highest salary include the candidate's level of experience, the location of the job, and the industry.

    • For example, a senior database administrator in a major tech hub li...

  • Answered by AI
  • Q3. Duplicate records delete In sql
  • Ans. 

    To delete duplicate records in SQL, you can use the DELETE statement with a subquery.

    • Identify the duplicate records using a SELECT statement with GROUP BY and HAVING clause.

    • Create a subquery to select the duplicate records.

    • Use the DELETE statement with the subquery to delete the duplicate records.

  • Answered by AI
  • Q4. Grep command in unjx
  • Ans. 

    Grep command is used in Unix to search for specific patterns in files.

    • Grep stands for Global Regular Expression Print.

    • It is a powerful command-line tool for searching text files.

    • It uses regular expressions to match patterns.

    • Grep can search for patterns in a single file or multiple files.

    • It can also search recursively in directories.

    • Grep has various options to control the search behavior.

    • Some common options include -i (...

  • Answered by AI
  • Q5. Awk command in unux
  • Ans. 

    Awk command in Unix is a powerful text processing tool used for extracting and manipulating data.

    • Awk command is used for pattern scanning and processing of text files.

    • It allows you to specify patterns and actions to be performed on those patterns.

    • Awk operates on a line-by-line basis, processing one line at a time.

    • It can be used to extract specific columns from a file, perform calculations, and generate reports.

    • Awk uses...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and focus on communication skills.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Telecall Technology?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. Do u have done any work in appkication support
  • Ans. 

    Application support involves troubleshooting, maintaining, and optimizing software applications to ensure smooth operation and user satisfaction.

    • Incident Management: I have experience in resolving application issues by analyzing logs and user reports, ensuring minimal downtime.

    • User Support: Provided assistance to end-users by guiding them through application functionalities and troubleshooting common problems.

    • Performan...

  • Answered by AI
  • Q2. How u can improve ur skills
  • Ans. 

    Improving skills involves continuous learning, practical experience, and seeking feedback to enhance technical and problem-solving abilities.

    • Online Courses: Enroll in platforms like Coursera or Udemy to learn new technologies or deepen existing knowledge, such as cloud computing or database management.

    • Hands-On Projects: Work on real-world projects or contribute to open-source to apply theoretical knowledge practically,...

  • Answered by AI
  • Q3. Are u able to speak english
  • Ans. 

    Yes, I am proficient in English, both spoken and written, which enables effective communication in diverse environments.

    • I have completed my education in English medium, enhancing my language skills.

    • I have experience in customer support roles where I communicated with clients in English.

    • I regularly participate in team meetings and discussions conducted in English.

  • Answered by AI

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

Interview Questionnaire 

1 Question

  • Q1. Introduction, qualification, experience, and family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Just one telephonic round and one video call round with the recruiter and they selected me without any complications.
Are these interview questions helpful?

I applied via Company Website and was interviewed before Oct 2021. There were 5 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 

Aptitude questions was high level

Round 3 - Coding Test 

Had 2 coding questions, and in 2 programming language

Round 4 - HR 

(1 Question)

  • Q1. Where do you see yourself in next 5 years
Round 5 - Technical 

(1 Question)

  • Q1. To write a code part using the programming language which is familiar
  • Ans. 

    This code demonstrates a simple Python function to process user input and return a response.

    • Define a function using 'def' keyword. Example: 'def greet(name):'

    • Use input() to get user input. Example: 'name = input('Enter your name: ')

    • Return a formatted string. Example: 'return f'Hello, {name}!''

    • Call the function and print the result. Example: 'print(greet(name))'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare well and be confident. Answer the questions without fear

Interview Questionnaire 

3 Questions

  • Q1. They will probably ask about your last job profile. What roles and responsibilities you were handling? And some basics about sql.
  • Q2. Tell me about your self?
  • Q3. Why you want to be a part of hdfc ?

I applied via Approached by Company and was interviewed in Jul 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 - Technical 

(5 Questions)

  • Q1. Which technology you have worked ,explain in brief your day to day roles and responsibilities
  • Q2. What do you know about SQL , Unix , explain in brief
  • Ans. 

    SQL is a database language used to manage data. Unix is an operating system used for servers and workstations.

    • SQL is used to create, modify, and query databases.

    • Unix is a command-line interface used for file management, process control, and networking.

    • SQL can be used with various database management systems like MySQL, Oracle, and SQL Server.

    • Unix commands include ls, cd, grep, and chmod.

    • SQL and Unix are commonly used i...

  • Answered by AI
  • Q3. Tell all unix commands which are mostly used
  • Ans. 

    Commonly used Unix commands

    • ls - list directory contents

    • cd - change directory

    • mkdir - make directory

    • rm - remove files or directories

    • cp - copy files or directories

    • mv - move or rename files or directories

    • grep - search for patterns in files

    • cat - concatenate and display files

    • chmod - change file permissions

    • ssh - secure shell remote login

  • Answered by AI
  • Q4. What you will do if application perform slow,
  • Ans. 

    I will investigate the root cause of the slow performance and take appropriate actions.

    • Check server resources usage

    • Analyze application logs

    • Identify bottleneck areas

    • Optimize database queries

    • Implement caching mechanisms

    • Upgrade hardware or software if necessary

  • Answered by AI
  • Q5. Tell all SQL commands which you know
  • Ans. 

    Common SQL commands for data manipulation and retrieval

    • SELECT - retrieve data from a table

    • INSERT - insert data into a table

    • UPDATE - update existing data in a table

    • DELETE - delete data from a table

    • CREATE - create a new table or database

    • ALTER - modify the structure of a table

    • DROP - delete a table or database

    • JOIN - combine data from multiple tables

    • GROUP BY - group data based on a specific column

    • ORDER BY - sort data based ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Tech Mahindra Application Support Engineer interview:
  • MS SQL Server
  • Unix scripting
  • Cloud
  • Devops
  • Redhat Linux
Interview preparation tips for other job seekers - Keep confidence and polite be honest do not try to cheat if their is video call interview

Skills evaluated in this interview

Telecall Technology Interview FAQs

How many rounds are there in Telecall Technology interview?
Telecall Technology interview process usually has 1-2 rounds. The most common rounds in the Telecall Technology interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in Telecall Technology interview?

Some of the top questions asked at the Telecall Technology interview -

  1. How to know in which file the pattern error exists in lin...read more
  2. Nth Highest Salary in SQL. Fetch Duplicate records in SQL. Write shell script t...read more
  3. What will you do when application is do...read more
How long is the Telecall Technology interview process?

The duration of Telecall Technology interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.8/5

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
ICICI Bank Interview Questions
4.0
 • 2.6k Interviews
HDFC Bank Interview Questions
3.9
 • 2.5k Interviews
View all

Telecall Technology Reviews and Ratings

based on 14 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 14 Reviews and Ratings
Compare Telecall Technology with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview