Upload Button Icon Add office photos
Engaged Employer

i

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

TC Global Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TC Global Analyst Interview Questions and Answers

Updated 16 Oct 2023

TC Global Analyst Interview Experiences

1 interview found

Analyst Interview Questions & Answers

user image Aditi Sharma

posted on 16 Oct 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Oct 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 tips
Round 2 - Aptitude Test 

Aptitude test with situations based questions

Round 3 - Technical 

(1 Question)

  • Q1. About past experience,Case studies

Interview Preparation Tips

Interview preparation tips for other job seekers - Good platform to learn as at that time mentors were great

Interview questions from similar companies

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

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about your self , internship or exp. Why sales?
  • Ans. 

    I have a background in marketing and sales through internships and previous work experience. I am passionate about sales because of the opportunity to build relationships and drive revenue.

    • Interned at XYZ company where I learned about sales strategies and techniques

    • Worked as a sales associate at ABC store, exceeding sales targets consistently

    • Enjoy the challenge of meeting customer needs and closing deals

    • Passionate abou...

  • Answered by AI
Round 2 - Assignment 

A sales pitch round in which a scenario was provided.

Round 3 - One-on-one 

(1 Question)

  • Q1. Final interview questions from cv.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. What is your Salary Expectation?
  • Q2. What is your Notice Period?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. How would you solve issues reported by 2 different regions for a same requirement?
  • Ans. 

    I would analyze the reported issues, identify commonalities and differences, collaborate with stakeholders from both regions, and propose a solution that addresses the concerns of both parties.

    • Analyze the reported issues from both regions to understand the root cause

    • Identify commonalities and differences in the reported issues

    • Collaborate with stakeholders from both regions to gather more insights and perspectives

    • Propos...

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

(2 Questions)

  • Q1. Define your roles and responsibilities
  • Q2. Explain the difficult scenario you went through during requirement elicitation
  • Ans. 

    During requirement elicitation, I faced challenges in understanding the complex business processes and conflicting stakeholder priorities.

    • Navigating conflicting stakeholder priorities

    • Understanding complex business processes

    • Resolving ambiguity in requirements

    • Managing scope creep

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

(2 Questions)

  • Q1. How would you handle a requirement?
  • Q2. What is iteration and why it is important?
  • Ans. 

    Iteration is the process of repeating a set of instructions a specified number of times or until a specific condition is met.

    • Iteration allows for the efficient execution of tasks by automating repetitive processes.

    • It helps in achieving accuracy and consistency in tasks that require multiple steps to be performed.

    • Examples include loops in programming languages like for loops and while loops.

    • Iteration is important in pro...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This is a very old interview. Now everything has changed. Don't expect the above questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Requirement gathering methodologies
  • Q2. Scenario based questions
  • Q3. HR interview for salary negotiation

I applied via Approached by company and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. One of the worst interview i have ever attended.. The HR manager will inform you that its a video call..Only the candidates have to turn on the video...2 panel member s have joined without video this makes...

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not attend this company

Interview Preparation Tips

General Tips: This is the worst and scam company runned by bookies. Working environment is pathetic, supervisor abuse their subordinates. I worked for 4 months and then resigned.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

This round was more on the conversation skills

Round 2 - Coding Test 

The coding round had some let code problems on SQL and Python

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 3 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 - Coding Test 

Medium level coding question

Round 3 - Technical 

(2 Questions)

  • Q1. Intreview round asked about project mentioned in CV
  • Q2. Basic of reacts, opps question,sql queries
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Implement login with Google SSO, show emails in a single place

Round 3 - One-on-one 

(4 Questions)

  • Q1. How to implement JWT
  • Ans. 

    JWT can be implemented by generating a token with user information and a secret key, then verifying the token using the same secret key.

    • Generate a JWT token with user information and a secret key

    • Include necessary claims like expiration time, issuer, etc.

    • Verify the JWT token using the same secret key

    • Handle token expiration and refresh if needed

  • Answered by AI
  • Q2. Please read about it on the internet, do take care of public and private key use
  • Q3. Middleware in express, how to create one?
  • Ans. 

    Middleware in Express is a function that has access to the request and response objects.

    • Create a middleware function using app.use() method in Express.

    • Middleware functions have access to the request object (req), the response object (res), and the next middleware function in the application's request-response cycle.

    • Example: app.use((req, res, next) => { console.log('This is a middleware function'); next(); });

  • Answered by AI
  • Q4. Read about it on the internet
Round 4 - One-on-one 

(6 Questions)

  • Q1. Discussed about guards in Angular
  • Q2. Read about it on the internet
  • Q3. How does lazy loading work in Angular
  • Ans. 

    Lazy loading in Angular delays loading of modules until they are needed

    • Lazy loading helps improve performance by only loading modules when they are required

    • It is achieved by using the loadChildren property in the route configuration

    • Lazy loaded modules are loaded asynchronously when the user navigates to the corresponding route

  • Answered by AI
  • Q4. Read about lazy loading in Angular
  • Q5. How to enable SSR in Angular
  • Ans. 

    Server-side rendering (SSR) in Angular can be enabled by using Angular Universal.

    • Install Angular Universal using Angular CLI

    • Create a new Angular Universal project

    • Update app.module.ts to include server-side rendering

    • Build and run the Angular Universal project

  • Answered by AI
  • Q6. Read about Angular Universal for this

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Angular concepts, DSA and Ruby on Rails concepts for the round

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find duplicates in an array
  • Ans. 

    Use a hash set to find duplicates in an array of strings.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate. If not, add it to the hash set.

  • Answered by AI
  • Q2. Find single duplicate element in an array where contents of the array are length of array - 1
  • Ans. 

    Find the single duplicate element in an array of strings with length n-1.

    • Iterate through the array and use a HashSet to keep track of elements seen so far.

    • If an element is already in the HashSet, that is the duplicate element.

    • Return the duplicate element once found.

  • Answered by AI
Round 2 - Assignment 

Create a student support system

Round 3 - One-on-one 

(1 Question)

  • Q1. Design an order and payments system for an EdTech company
  • Ans. 

    Design an order and payments system for an EdTech company

    • Allow users to browse and select courses

    • Implement a shopping cart for users to add courses

    • Integrate payment gateways for secure transactions

    • Provide order confirmation and receipt to users

    • Allow users to track their order status

  • Answered by AI

Skills evaluated in this interview

TC Global Interview FAQs

How many rounds are there in TC Global Analyst interview?
TC Global interview process usually has 3 rounds. The most common rounds in the TC Global interview process are Resume Shortlist, Aptitude Test and Technical.

Tell us how to improve this page.

TC Global Analyst Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Internshala Interview Questions
3.8
 • 56 Interviews
Acadecraft Interview Questions
3.5
 • 52 Interviews
Coding Ninjas Interview Questions
3.8
 • 49 Interviews
TALENTEDGE Interview Questions
3.3
 • 21 Interviews
Nerdy Turtlez Interview Questions
2.8
 • 17 Interviews
SpeedLabs Interview Questions
3.6
 • 14 Interviews
UpThink Interview Questions
3.9
 • 13 Interviews
View all
TC Global Analyst Salary
based on 22 salaries
₹2 L/yr - ₹6 L/yr
37% less than the average Analyst Salary in India
View more details

TC Global Analyst Reviews and Ratings

based on 4 reviews

4.8/5

Rating in categories

4.8

Skill development

4.6

Work-life balance

4.8

Salary

4.6

Job security

4.8

Company culture

4.6

Promotions

4.6

Work satisfaction

Explore 4 Reviews and Ratings
Relationship Manager
37 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Relationship Developer
36 salaries
unlock blur

₹3.3 L/yr - ₹7.4 L/yr

Analyst
22 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Coordinator
13 salaries
unlock blur

₹2.8 L/yr - ₹3.8 L/yr

Associate Consultant
11 salaries
unlock blur

₹6.5 L/yr - ₹16.3 L/yr

Explore more salaries
Compare TC Global with

Edwise International

3.7
Compare

Study Overseas Global

4.6
Compare

Santa Monica Study Abroad

3.8
Compare

Global Reach

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