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 SAP ABAP Hana Developer Interview Questions and Answers

Updated 20 Sep 2024

TCS SAP ABAP Hana Developer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between CDS &AMDP?
  • Ans. 

    CDS is used for defining semantically rich data models in ABAP, while AMDP is used for writing database procedures in ABAP.

    • CDS is used for defining data models in ABAP, while AMDP is used for writing database procedures.

    • CDS allows for defining data structures, associations, and annotations, while AMDP allows for writing SQLScript procedures.

    • CDS is used for defining views, entities, and associations, while AMDP is used ...

  • Answered by AI
  • Q2. What is Module pool programming?
  • Ans. 

    Module pool programming is a type of programming in SAP ABAP that allows for the creation of interactive user interfaces.

    • Module pool programming is used to create interactive screens for user input and output.

    • It involves creating modules that handle user actions and events on the screen.

    • Data is exchanged between the screen and the ABAP program using global variables.

    • Module pool programs are typically used in SAP GUI ap...

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. How do you manage the issues?
  • Ans. 

    I manage issues by prioritizing, analyzing root causes, collaborating with team members, and implementing effective solutions.

    • Prioritize issues based on impact and urgency

    • Analyze root causes to prevent future occurrences

    • Collaborate with team members to gather insights and brainstorm solutions

    • Implement effective solutions and monitor for any further issues

  • Answered by AI
  • Q2. Behaviour questionm
Round 3 - HR 

(2 Questions)

  • Q1. Are you ready to relocate to any location?
  • Ans. 

    Yes, I am open to relocating to any location for the right opportunity.

    • I am flexible and willing to move for career growth

    • I have relocated for previous job opportunities

    • I understand the importance of being open to new locations for professional development

  • Answered by AI
  • Q2. Will you be able to come to office 5days a week?
  • Ans. 

    Yes, I am able to come to the office 5 days a week.

    • I am committed to working full-time hours in the office

    • I understand the importance of being present for team collaboration and meetings

    • I have reliable transportation to commute to the office

    • I am willing to adjust my schedule if needed for work requirements

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I appeared for an interview in Sep 2021.

Interview Questionnaire 

1 Question

  • Q1. About project?

Interview Preparation Tips

Interview preparation tips for other job seekers - The level of the interview was intermediate

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

Interview Questionnaire 

4 Questions

  • Q1. Yourself
  • Q2. How do you feel about working nights and weekends?
  • Q3. I will try to complete my tasks within weekdays effectively and efficiently to avoid weekand night work.
  • Q4. What is the difference b/w confidence and over confidence?

Interview Preparation Tips

Interview preparation tips for other job seekers - Tech mahendra company is a very efficent work hard and if you have a growth of employees skills and sincearly work hard

Interview Questionnaire 

3 Questions

  • Q1. Tr1- difference between switch case and if else, write the code for sorting
  • Ans. 

    Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.

    • Switch case is faster than if else for multiple conditions

    • If else is more readable for binary conditions

    • Sorting can be done using bubble sort, insertion sort, quick sort, etc.

    • Example code for bubble sort: for(i=0;iarr[j+1]){swap(&arr[j],&arr[j+1]);}}}

  • Answered by AI
  • Q2. Tr2-difference between compiler and interpreter, Solve a challange on their own coding platform with proper output
  • Ans. 

    Difference between compiler and interpreter with a coding challenge

    • Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution

    • Compiler generates an executable file while interpreter does not

    • Compiler is faster but debugging is harder while interpreter is slower but debugging is easier

    • Coding challenge: Write a program to find the sum of two numbers

  • Answered by AI
  • Q3. Oops concept

I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic oops questions
  • Q2. Software Engineering: software development lifecycle, water flow model etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers are mostly gentle and friendly.Just be bold and answer what you know.hope this helps.all the best :)

Interview Questionnaire 

1 Question

  • Q1. Spring IOC , bean scopes, Tomcat server questions , SpringBoot questions Dependency questions, Maven questions

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself?basics on c , then about projects

I applied via Company Website and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What questions will be asked Aptitude
  • Q2. What questions will be aske Technical round
  • Q3. What questions will be aske hr

Interview Preparation Tips

Interview preparation tips for other job seekers - He

I applied via Campus Placement and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

13 Questions

  • Q1. What technologies you are familiar with?
  • Ans. 

    I am familiar with a wide range of technologies used in software development.

    • Java

    • Python

    • C++

    • JavaScript

    • HTML/CSS

    • SQL

    • Git

    • Linux

    • RESTful APIs

    • Agile methodologies

  • Answered by AI
  • Q2. What are the OOPs concept in Java?
  • Ans. 

    OOPs concepts in Java include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and providing a simplified interfa

  • Answered by AI
  • Q3. What are the ways to achieve abstraction?
  • Ans. 

    Abstraction can be achieved through interfaces, abstract classes, and encapsulation.

    • Using interfaces to define a set of methods that a class must implement

    • Using abstract classes to provide a base implementation that can be extended by subclasses

    • Encapsulating implementation details to hide complexity and provide a simpler interface

    • Using design patterns such as Factory and Strategy to abstract away implementation details

  • Answered by AI
  • Q4. Difference between class and Interface object and fucntion instance and all the differences?
  • Ans. 

    Class is a blueprint for creating objects while interface defines a contract for implementing classes.

    • Class is a template for creating objects with properties and methods.

    • Interface is a contract that defines a set of methods and properties that a class must implement.

    • Object is an instance of a class that has its own set of properties and methods.

    • Function instance is a reference to a function that can be called with arg...

  • Answered by AI
  • Q5. Some graph question and some more questions from data structure like about linkedlist queue.
  • Q6. Inheritance
  • Q7. Scope of access modifiers
  • Ans. 

    Access modifiers control the visibility and accessibility of class members.

    • Access modifiers include public, private, protected, and internal.

    • Public members can be accessed from anywhere.

    • Private members can only be accessed within the same class.

    • Protected members can be accessed within the same class and its subclasses.

    • Internal members can be accessed within the same assembly.

    • Access modifiers help enforce encapsulation ...

  • Answered by AI
  • Q8. Some tree questions
  • Q9. Some graph question
  • Q10. What do you know about cloud
  • Ans. 

    Cloud refers to the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • Cloud services can be categorized into three main types: Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS).

    • Cloud providers include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform.

    • ...

  • Answered by AI
  • Q11. Some basic question like which things come in Iaas
  • Q12. What are the ways to achieve some task on aws
  • Ans. 

    There are multiple ways to achieve tasks on AWS depending on the specific task.

    • Using AWS Management Console

    • Using AWS CLI

    • Using AWS SDKs

    • Using AWS CloudFormation

    • Using AWS Elastic Beanstalk

    • Using AWS Lambda

    • Using AWS Step Functions

    • Using AWS Batch

  • Answered by AI
  • Q13. About ec2 and many more

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be honest about what you know and how much you know tell them very clearly you do not know much about this do not try to make stories they know more than you

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1. Background tables were details are stored for dso, cube
  • Q2. What are sid's?
  • Ans. 

    SID stands for Security Identifier. It is a unique identifier assigned to a user, group, or computer account in Windows.

    • SID is used to control access to resources in Windows

    • It is a string of alphanumeric characters

    • SID is generated by the Windows operating system during the creation of an account

    • It is used to identify users, groups, and computers in a network

    • Example: S-1-5-21-3623811015-3361044348-30300820-1013

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The recruiter asked the basic technical questions on all the different layers like application layar, datasource level, reporting level, apd, open hub.
My interview last for around 45-60 mins

TCS Interview FAQs

How many rounds are there in TCS SAP ABAP Hana Developer interview?
TCS interview process usually has 3 rounds. The most common rounds in the TCS interview process are Technical, Behavioral and HR.
How to prepare for TCS SAP ABAP Hana 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 OOPS, SAP ABAP and Sap Hana.
What are the top questions asked in TCS SAP ABAP Hana Developer interview?

Some of the top questions asked at the TCS SAP ABAP Hana Developer interview -

  1. What is the difference between CDS &AM...read more
  2. What is Module pool programmi...read more
  3. How do you manage the issu...read more

Tell us how to improve this page.

TCS SAP ABAP Hana Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
TCS SAP ABAP Hana Developer Salary
based on 5 salaries
₹4 L/yr - ₹8.7 L/yr
26% less than the average SAP ABAP Hana Developer Salary in India
View more details

TCS SAP ABAP Hana Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
66.1k salaries
unlock blur

₹5 L/yr - ₹16 L/yr

AST Consultant
51.9k salaries
unlock blur

₹8 L/yr - ₹25.4 L/yr

Associate Consultant
30.4k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Explore more salaries
Compare TCS with

Amazon

4.0
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