Upload Button Icon Add office photos
Engaged Employer

i

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

TCS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TCS Teradata Developer Interview Questions and Answers

Updated 8 Apr 2023

TCS Teradata Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 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 

(2 Questions)

  • Q1. Very basic questions
  • Q2. Very basic question on Teradata

Interview Preparation Tips

Interview preparation tips for other job seekers - You just need basic knowledge of your technology. TCS does not need any expert. Neither they can afford it.

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Architecture related questions of teradata
  • Q2. SQL joins with sample date
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Use INNER JOIN to return rows when there is at least one match in both tables

    • Use LEFT JOIN to return all rows from the left table, and the matched rows from the right table

    • Use RIGHT JOIN to return all rows from the right table, and the matched rows from the left table

    • Use FULL JOIN to return rows when there is a match in on

  • Answered by AI

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Teradata architecture, sql commands, utilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve Technical skills and build communication

ETL Developer Interview Questions & Answers

Tech Mahindra user image RAMAVATHULA CHANDRA NAIK

posted on 4 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. They were asking very logical and technical questions on interview time
  • Q2. They were test our skills and time punctuation
Round 2 - HR 

(1 Question)

  • Q1. They were discussed with some technical questions and based on knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - They were asking technical questions and based on our resume mentioned questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Questions related to the current and past projects.
  • Q2. Aws related questions.
  • Q3. Data warehousing basics
Round 2 - Technical 

(2 Questions)

  • Q1. Explain about the roles and responsibilities.
  • Q2. Discussion about the role in Genpact.
Round 3 - HR 

(2 Questions)

  • Q1. Asked about expectated salary
  • Q2. Why are you switching

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about the points given in your resume and the work you have done.
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 Jun 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Start up parameters of sql server
  • Ans. 

    Start up parameters are used to configure the behavior of SQL Server when it starts up.

    • Start up parameters are specified in the SQL Server Configuration Manager.

    • Common start up parameters include -d (database files location), -e (error log location), -m (single user mode), -T (trace flags), etc.

    • Start up parameters can be modified to customize the behavior of SQL Server during startup.

    • Example: -dC:\Program Files\Microso...

  • Answered by AI
  • Q2. Differential backup query
  • Q3. Sql server statics
  • Q4. Log file architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - kindly prepare all the topics about sql server.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Project work currently working
  • Ans. 

    Currently working on developing a real-time data processing pipeline for a financial services company.

    • Designing and implementing data ingestion processes using Apache Kafka

    • Building data processing workflows with Apache Spark

    • Optimizing data storage and retrieval with Apache Hadoop

    • Collaborating with data scientists to integrate machine learning models into the pipeline

  • Answered by AI
  • Q2. Sql,python and other data warehousing concept
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Architecture of sql
  • Ans. 

    SQL architecture refers to the structure and components of a SQL database system.

    • SQL architecture includes components like storage engine, query processor, and buffer manager.

    • The storage engine manages data storage and retrieval, while the query processor processes SQL queries.

    • The buffer manager handles caching and memory management to optimize performance.

    • Examples of SQL architectures include MySQL, Oracle, and SQL Se

  • Answered by AI
  • Q2. Recovery models

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Test your algorithmic thinking and problem solving skills

Round 2 - One-on-one 

(1 Question)

  • Q1. Communications,clearity of answers
Round 3 - HR 

(1 Question)

  • Q1. Discussion about packages,joining date

Interview Preparation Tips

Interview preparation tips for other job seekers - Self assessment,Techical preparation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Given a DataFrame df with columns 'A', 'B','C' how would you group the data by the values in column 'A' and calculate the mean of column 'B' for each group, while also summing the values in column 'C' ?
  • Ans. 

    Group data by column 'A', calculate mean of column 'B' and sum values in column 'C' for each group.

    • Use groupby() function in pandas to group data by column 'A'

    • Apply mean() function on column 'B' and sum() function on column 'C' for each group

    • Example: df.groupby('A').agg({'B':'mean', 'C':'sum'})

  • Answered by AI
  • Q2. Explain the difference deepcopy() and copy() methods in Python's copy module. Provide a scenario where you would use deepcopy() over copy().
  • Ans. 

    deepcopy() creates a new object with completely independent copies of nested objects, while copy() creates a shallow copy.

    • deepcopy() creates a new object and recursively copies all nested objects, while copy() creates a shallow copy of the top-level object only.

    • Use deepcopy() when you need to create a deep copy of an object with nested structures, to avoid any references to the original object.

    • Use copy() when you only ...

  • Answered by AI
  • Q3. Discuss the concept of Python decorators and provide an example of how you would use decorators to measure the execution time of a function.
  • Ans. 

    Python decorators are functions that modify the behavior of other functions. They are commonly used for adding functionality to existing functions without modifying their code.

    • Decorators are defined using the @ symbol followed by the decorator function name.

    • They can be used to measure the execution time of a function by wrapping the function with a timer decorator.

    • Example: def timer(func): def wrapper(*args, **kwargs...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I would like you to approach the interview with enthusiasm, demonstrating passion and eagerness in your interview aligns with their mission of driving innovation and positive change.

Skills evaluated in this interview

TCS Interview FAQs

How many rounds are there in TCS Teradata Developer interview?
TCS interview process usually has 2 rounds. The most common rounds in the TCS interview process are Resume Shortlist and Technical.
How to prepare for TCS Teradata Developer 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 TCS. The most common topics and skills that interviewers at TCS expect are Teradata, Teradata SQL, ETL, Bteq and Data Warehousing.
What are the top questions asked in TCS Teradata Developer interview?

Some of the top questions asked at the TCS Teradata Developer interview -

  1. Very basic question on Terad...read more
  2. Very basic questi...read more

Tell us how to improve this page.

TCS Teradata Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 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
Tech Mahindra Interview Questions
3.5
 • 3.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
TCS Teradata Developer Salary
based on 56 salaries
₹3.8 L/yr - ₹10 L/yr
17% less than the average Teradata Developer Salary in India
View more details

TCS Teradata Developer Reviews and Ratings

based on 3 reviews

3.7/5

Rating in categories

3.7

Skill development

4.2

Work-life balance

3.0

Salary

4.5

Job security

4.2

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 3 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
67k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.3k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹5.7 L/yr

Associate Consultant
29.1k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

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