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

Clear (1)

TCS IT Analyst Grade C2 Interview Questions, Process, and Tips

Updated 27 Dec 2024

Top TCS IT Analyst Grade C2 Interview Questions and Answers

View all 14 questions

TCS IT Analyst Grade C2 Interview Experiences

13 interviews found

IT Analyst Grade C2 Interview Questions & Answers

user image shristi gupta

posted on 18 May 2023

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be honest with your years of experience. All information you share will be verified at the time of joining.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. It's related to my technology only i have around 4 years of experience in SAP PI so mostly integration and mapping questions they gave some scenario and asked me input They asked node function with detai...
Round 3 - Behavioral 

(1 Question)

  • Q1. Mangaerial round is basically introduction with manager they asked about current CTC- and expected and some previous experience u want to share with them .

Interview Preparation Tips

Topics to prepare for TCS IT Analyst Grade C2 interview:
  • Business Process Mapping
  • Adapters
  • Ccms
Interview preparation tips for other job seekers - Before going for tcs interview prepare yourself and if you have proper documents from starting to till end then only go for tcs.
Because TCS BGV clearance is most important
If you have gap more than 6 month after education then don't join tcs

Tesco

Secure your future with a company that values your job stability.

Rated 4/5 for Job Security on AmbitionBox

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 Dec 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is Purchase order?
  • Ans. 

    A purchase order is a document issued by a buyer to a seller, indicating types, quantities, and agreed prices for products or services.

    • A purchase order is a legally binding document

    • It specifies the details of the products or services being purchased

    • It includes quantities, prices, delivery dates, and terms of payment

    • It serves as a record of the transaction between the buyer and seller

  • Answered by AI
  • Q2. What is Purchase requisition?
  • Ans. 

    A purchase requisition is a document used to request goods or services for purchase.

    • It is a formal request made by a department or individual within a company to the purchasing department.

    • It includes details such as quantity, description, and estimated cost of the items or services needed.

    • Once approved, the purchase requisition serves as authorization for the purchasing department to proceed with the purchase.

    • It helps ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please know the P2P cycle for the interview.

IT Analyst Grade C2 Interview Questions Asked at Other Companies

asked in TCS
Q1. Explain testing framework which you used in your project
asked in TCS
Q2. How to inspect static and dynamic drop-down in selenium
asked in TCS
Q3. What is overloading and overriding in Java
asked in TCS
Q4. How to set priorities and grouping in testng
asked in TCS
Q5. Describe the business flow , eccomerce domain knowledge.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all Resume tips
Round 2 - Technical 

(8 Questions)

  • Q1. What is inheritance in java
  • Ans. 

    Inheritance is a mechanism in Java where one class acquires the properties and behaviors of another class.

    • It allows code reusability and saves time

    • The class that is inherited is called the superclass or parent class

    • The class that inherits from the superclass is called the subclass or child class

    • The subclass can access all the public and protected methods and fields of the superclass

    • Example: class Dog extends Animal {}

    • E

  • Answered by AI
  • Q2. What is overloading and overriding in Java
  • Ans. 

    Overloading is using the same method name with different parameters. Overriding is replacing a method in a subclass.

    • Overloading is a compile-time polymorphism

    • Overloading is used to provide different implementations of the same method

    • Overriding is a runtime polymorphism

    • Overriding is used to provide a different implementation of a method in a subclass

    • Overriding requires inheritance

    • Example of overloading: public void prin...

  • Answered by AI
  • Q3. Write code to capture screenshot in selenium
  • Ans. 

    Code to capture screenshot in Selenium

    • Create an object of the TakesScreenshot interface

    • Use the getScreenshotAs() method to capture the screenshot

    • Save the screenshot to a file using the File class

    • Example: TakesScreenshot ts = (TakesScreenshot)driver; File screenshotFile = ts.getScreenshotAs(OutputType.FILE);

    • Example: FileUtils.copyFile(screenshotFile, new File("C:\\screenshot.png"));

  • Answered by AI
  • Q4. Explain testing framework which you used in your project
  • Ans. 

    We used the Selenium testing framework for our project.

    • Selenium is an open-source testing framework used for web applications.

    • It supports multiple programming languages like Java, Python, etc.

    • We used Selenium WebDriver to automate our tests.

    • It allows us to write test scripts for different browsers like Chrome, Firefox, etc.

    • We also used TestNG framework for test management and reporting.

  • Answered by AI
  • Q5. Explain page ojbect model
  • Ans. 

    Page Object Model is a design pattern used in test automation to create an object repository for web UI elements.

    • It helps in reducing code duplication and improves code maintainability.

    • Each web page is represented as a separate class and all the elements on that page are defined as variables in that class.

    • The methods in the class perform actions on those elements.

    • It makes test scripts more readable and easier to mainta...

  • Answered by AI
  • Q6. Annotations used in testng
  • Ans. 

    Annotations in TestNG are used to provide additional information about the test methods and classes.

    • Annotations can be used to mark a method as a test method using @Test

    • Annotations can be used to set the priority of a test method using @Test(priority = 1)

    • Annotations can be used to group test methods using @Test(groups = {"smoke", "regression"})

    • Annotations can be used to run a method before or after a test using @Before...

  • Answered by AI
  • Q7. How to inspect static and dynamic drop-down in selenium
  • Ans. 

    To inspect static and dynamic drop-down in Selenium, we can use the Select class and wait for the element to be visible.

    • Use the Select class to interact with drop-downs

    • For static drop-downs, locate the element and use the Select class to select the desired option

    • For dynamic drop-downs, wait for the element to be visible before interacting with it

    • Use the 'SelectBy' methods to select options by value, index, or visible t

  • Answered by AI
  • Q8. How to set priorities and grouping in testng
  • Ans. 

    TestNG allows setting priorities and grouping of test cases for efficient test execution.

    • Use the 'priority' attribute to set the execution order of test methods.

    • Use the 'groups' attribute to group test methods based on common characteristics.

    • Use the 'dependsOnGroups' attribute to specify the order of group execution.

    • Use the 'dependsOnMethods' attribute to specify the order of method execution.

    • Use the 'enabled' attribut...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary and role discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on any programming language and selenium webdriver tool for automation testing interview preparation

Skills evaluated in this interview

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Technical questions all related to exp
  • Q2. Req Tech based technical q
Round 3 - Technical 

(3 Questions)

  • Q1. Stlc , diferent type of testing , previous project.
  • Q2. Describe the business flow , eccomerce domain knowledge.
  • Ans. 

    Business flow in ecommerce involves various stages from product listing to order fulfillment.

    • Ecommerce business flow includes product listing, shopping cart, checkout, payment processing, and order fulfillment.

    • Product listing involves creating product pages with descriptions, images, and pricing.

    • Shopping cart allows customers to add products to their cart and proceed to checkout.

    • Checkout involves collecting customer in...

  • Answered by AI
  • Q3. Telecom business knowledge , about csg management syatem.
Round 4 - Technical 

(1 Question)

  • Q1. About database , about splunk , about defect , severity and priority ,

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be consistence in preparing for interview .

TCS interview questions for designations

 IT Analyst C2

 (99)

 IT Analyst

 (338)

 IT Analyst ITA

 (18)

 IT Business Analyst

 (3)

 Analyst (IT Advisory)

 (2)

 IT Analyst 1

 (2)

 Senior IT Analyst

 (1)

 IT System Analyst

 (1)

IT Analyst Grade C2 Interview Questions & Answers

user image Satyagopal Dhanalakota

posted on 2 Feb 2023

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

I appeared for an interview in Aug 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Explain realtime experience scenarios, with examples
  • Ans. 

    Realtime experience scenarios involve immediate response to events or data.

    • A stock trading platform that updates prices in real-time

    • A traffic monitoring system that adjusts traffic signals based on current traffic flow

    • A weather app that provides up-to-the-minute weather information

    • A sports app that provides live scores and updates

    • A security system that alerts authorities immediately upon detecting a breach

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

(1 Question)

  • Q1. Show your managerial skills
Round 4 - HR 

(1 Question)

  • Q1. Discuss carefully with HR

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the real necessity of JD, be prepared for all the things anytime

Get interview-ready with Top TCS Interview Questions

I applied via Naukri.com

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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Related to the skills refer to the technology I am working on. Example: please explain about spf record, how it works and what is the purpose ?
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation and the purpose for I am looking for the new opportunity.
  • Q2. Explain about the difficulties you have faced earlier at previous organization.

Interview Preparation Tips

Topics to prepare for TCS IT Analyst Grade C2 interview:
  • Depend on the skills you have
Interview preparation tips for other job seekers - Be confident and answer smartly what you know exactly.
Don't try to provide the wrong information about skills that you don't know then the interviewer may ask questions related to the same.
Speak slowly and answer properly.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Selenium and testing methodology
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 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:
Avoid using too much corporate jargon in your CV. Sometimes keeping things simple will get your job done.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Mainframe basics.
  • Q2. Mainframe understanding must be clear.

Interview Preparation Tips

Topics to prepare for TCS IT Analyst Grade C2 interview:
  • Cobol
  • Db2
  • JCL
  • VSAM
  • Cics
  • schedule
  • File - aid
Interview preparation tips for other job seekers - Be strong with your basics understandings.

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to add js in Drupal?
  • Ans. 

    To add js in Drupal, create a custom module or add it to the theme's .info file.

    • Create a custom module and add the js file in the module's .info file

    • Add the js file to the theme's .info file

    • Use the drupal_add_js() function in a custom module or theme template file

    • Use the Libraries API module to manage js libraries

    • Ensure that the js file is added after the jQuery library

  • Answered by AI
  • Q2. What is event bubbling?
  • Ans. 

    Event bubbling is the propagation of an event from the innermost element to the outermost element in the DOM tree.

    • Events triggered on a child element will also trigger on its parent elements

    • Can be controlled using event.stopPropagation()

    • Helps in reducing code redundancy

    • Example: Clicking on a button inside a div will also trigger the click event on the div

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer clearly whatever you know.

Skills evaluated in this interview

IT Analyst Grade C2 Interview Questions & Answers

user image Veera Sudheer Kumar Gangisetty

posted on 26 Jul 2022

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical Interview more about the Technology
Round 3 - HR 

(1 Question)

  • Q1. Experience and Package Discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical round clearance is more important to crack the position into TCS.
Contribute & help others!
anonymous
You can choose to be anonymous

TCS Interview FAQs

How many rounds are there in TCS IT Analyst Grade C2 interview?
TCS interview process usually has 2-3 rounds. The most common rounds in the TCS interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in TCS IT Analyst Grade C2 interview?

Some of the top questions asked at the TCS IT Analyst Grade C2 interview -

  1. Explain testing framework which you used in your proj...read more
  2. How to inspect static and dynamic drop-down in selen...read more
  3. What is overloading and overriding in J...read more

Recently Viewed

SALARIES

Reliance Retail

SALARIES

TCS

COMPANY BENEFITS

TCS

No Benefits

COMPANY BENEFITS

TCS

No Benefits

COMPANY BENEFITS

TCS

No Benefits

COMPANY BENEFITS

TCS

No Benefits

SALARIES

HCLTech

SALARIES

DXC Technology

COMPANY BENEFITS

TCS

No Benefits

COMPANY BENEFITS

TCS

No Benefits

Tell us how to improve this page.

TCS IT Analyst Grade C2 Interview Process

based on 14 interviews

3 Interview rounds

  • Resume Shortlist Round
  • Technical Round
  • HR Round
View more

BigBasket

We don't just offer jobs; we offer peace of mind.

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.7
 • 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
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
TCS IT Analyst Grade C2 Salary
based on 4.2k salaries
₹4.3 L/yr - ₹18 L/yr
At par with the average IT Analyst Grade C2 Salary in India
View more details

TCS IT Analyst Grade C2 Reviews and Ratings

based on 270 reviews

3.6/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

2.6

Salary

4.4

Job security

3.5

Company culture

2.5

Promotions

3.2

Work satisfaction

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

₹1 L/yr - ₹9 L/yr

IT Analyst
66.2k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.5k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹5.8 L/yr

Associate Consultant
29.6k 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