Upload Button Icon Add office photos

Citicorp

Compare button icon Compare button icon Compare

Filter interviews by

Citicorp Senior Technical Lead Interview Questions, Process, and Tips

Updated 7 Mar 2025

Top Citicorp Senior Technical Lead Interview Questions and Answers

  • Q1. How does a HashMap work in Java, and what are the implications of overriding the hashCode method without overriding the equals method, and vice versa?
  • Q2. How can a program be written that utilizes three threads running in parallel while ensuring that they complete their tasks in a serial order?
  • Q3. How will you optimize the performance while reading a huge file with more than 100 columns and 1 lac rows?
View all 7 questions

Citicorp Senior Technical Lead Interview Experiences

2 interviews found

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

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(6 Questions)

  • Q1. What problems does the Java Collections Framework address?
  • Ans. 

    The Java Collections Framework provides data structures and algorithms for efficient data management and manipulation.

    • Standardized data structures: Offers common interfaces like List, Set, and Map for consistent usage.

    • Dynamic sizing: Collections can grow or shrink dynamically, unlike arrays which have fixed sizes.

    • Rich API: Provides a wide range of utility methods for sorting, searching, and manipulating data.

    • Thread-saf...

  • Answered by AI
  • Q2. What are Dependency Injection and the Inversion of Control (IoC) container in Spring?
  • Ans. 

    Dependency Injection (DI) and Inversion of Control (IoC) are core concepts in Spring for managing object creation and dependencies.

    • Dependency Injection allows objects to receive their dependencies from an external source rather than creating them internally.

    • Inversion of Control (IoC) is a design principle where the control of object creation and management is transferred to a container.

    • Spring IoC container manages the ...

  • Answered by AI
  • Q3. What keywords in threading can lead to a deadlock situation?
  • Ans. 

    Keywords like 'lock', 'synchronized', and 'wait' can contribute to deadlock in threading by causing resource contention.

    • 1. 'lock': Acquiring a lock on a resource can lead to deadlock if multiple threads try to acquire locks in different orders.

    • 2. 'synchronized': Using synchronized blocks can cause deadlock if two threads hold locks on two resources and wait for each other.

    • 3. 'wait': If a thread calls wait on an object ...

  • Answered by AI
  • Q4. How does a HashMap work in Java, and what are the implications of overriding the hashCode method without overriding the equals method, and vice versa?
  • Ans. 

    A HashMap in Java uses key-value pairs and relies on hashCode and equals for object storage and retrieval.

    • HashMap stores data in an array of buckets, where each bucket corresponds to a hash code.

    • The hashCode method determines the bucket index for storing an object.

    • If two objects have the same hash code, they are stored in the same bucket (collision handling).

    • Overriding hashCode without equals can lead to inconsistent b...

  • Answered by AI
  • Q5. How can a program be written that utilizes three threads running in parallel while ensuring that they complete their tasks in a serial order?
  • Ans. 

    Use synchronization mechanisms to control thread execution order while allowing parallel processing.

    • Utilize CountDownLatch in Java to ensure threads complete in order.

    • Example: Thread 1 completes, then Thread 2 starts, followed by Thread 3.

    • Use semaphores to control access and execution order.

    • Example: Semaphore initialized to 0 for Thread 2, allowing it to start only after Thread 1 completes.

    • Implement Future and Executor...

  • Answered by AI
  • Q6. What are the steps involved in designing a chatbot application?
  • Ans. 

    Designing a chatbot involves defining objectives, selecting technology, creating conversation flows, and testing for user experience.

    • Define the purpose: Determine what the chatbot will do, e.g., customer support, booking appointments.

    • Choose the platform: Decide whether to build on platforms like Facebook Messenger, Slack, or a custom website.

    • Select technology: Choose between rule-based systems or AI-driven solutions li...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How will you optimize the performance while reading a huge file with more than 100 columns and 1 lac rows?
  • Ans. 

    Use efficient file reading techniques like memory mapping, parallel processing, and columnar storage.

    • Utilize memory mapping to directly access file data without loading it into memory

    • Implement parallel processing to read and process data concurrently for faster performance

    • Consider using columnar storage to optimize data retrieval for specific columns

    • Use appropriate data structures and algorithms for efficient data proc

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared thoroughly with your resume, share your success stories and prepare for scenario based question and answers

Skills evaluated in this interview

Senior Technical Lead Interview Questions Asked at Other Companies

asked in Accenture
Q1. What is containerization (Docker)? what are steps to create conta ... read more
Q2. What are the standards use in fire protection system?
asked in HCLTech
Q3. which html control is not programmable in asp.net what does this ... read more
asked in Citicorp
Q4. How can a program be written that utilizes three threads running ... read more
asked in Citicorp
Q5. How does a HashMap work in Java, and what are the implications of ... read more

Interview questions from similar companies

I applied via Referral and was interviewed in May 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions on investment banking operations and the IT department associate with that. Since I was hired for governance team I was asked about some data related queries.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a commanding communication skills and walk with the confidence. Always believe in yourself and don't tie your ambition with emotions.

I applied via Referral and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Java logical question
  • Q2. Webdriver architecture
  • Q3. Framework, file and folder structure
  • Q4. Your approach to tackle dynamic objects
  • Ans. 

    I approach dynamic objects by analyzing their behavior and adapting my approach accordingly.

    • I start by understanding the nature of the dynamic object and its expected behavior

    • I then analyze its movement patterns and any potential obstacles or hazards

    • Based on this analysis, I adapt my approach to ensure safe and efficient interaction with the dynamic object

    • For example, when working with a moving conveyor belt, I would e...

  • Answered by AI
  • Q5. Implicit and explicit wait in selenium
  • Ans. 

    Implicit and explicit wait are two types of wait in Selenium used to synchronize the test execution with the application.

    • Implicit wait is used to set a default waiting time for the web elements to load before throwing an exception.

    • Explicit wait is used to wait for a specific condition to occur before proceeding with the test execution.

    • Implicit wait is set globally for the entire test script while explicit wait is set f...

  • Answered by AI
  • Q6. Java oops concepts
  • Q7. Sql queries related to joins
  • Q8. Basic Unix commands

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to connect yours answers with some example of your project.

Skills evaluated in this interview

I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Be clear with your basics
Round 2 - Technical 

(1 Question)

  • Q1. Maven basics, Design Patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with your basics and be confident

I applied via LinkedIn and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. String manipulation code

Interview Preparation Tips

Interview preparation tips for other job seekers - Be careful to answer to the point

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

(1 Question)

  • Q1. Project related interview questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion, Asked some questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have attended for manual testing. I was little easy

I applied via Company Website and was interviewed in Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hypothetical Questions - What if the company decides to demote all senior associate s to associate? What will be your reaction??

Interview Preparation Tips

Interview preparation tips for other job seekers - I went for Enterprise Testing Senior Associate. The person who interviewed me was very well known to me. He worked with me for more than a year at the same level. Asked illogical questions. All hypothetical questions he asked in which I was the one who was getting demoted or denied bonus or increment.
He should not have taken my interview as it was conflict of Interest. 99% of questions was asked by this guy and the other lady in VC only asked 1 general question.
I reported conflict of interest issue to the hiring HR but no action was taken not any reply toy email came.

I applied via Company Website and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Messaging communication (RabbitMQ, ActiveMQ)
  • Q2. Spring boot
  • Q3. Core Java (Oops, JVM, Memory types, Collections)
  • Q4. Spring security, Hibernate cache
  • Q5. Scenario based questions
  • Q6. Design patterns,SAGA Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Scenario based questions on real time examples like ticket reservation, data processing. SAGA pattern

I applied via Recruitment Consultant and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. NOTHING SPECIAL

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepare for all types of HL knowledge and login process and market analysis

Citicorp Interview FAQs

How many rounds are there in Citicorp Senior Technical Lead interview?
Citicorp interview process usually has 1 rounds. The most common rounds in the Citicorp interview process are Technical.
What are the top questions asked in Citicorp Senior Technical Lead interview?

Some of the top questions asked at the Citicorp Senior Technical Lead interview -

  1. How does a HashMap work in Java, and what are the implications of overriding th...read more
  2. How can a program be written that utilizes three threads running in parallel wh...read more
  3. How will you optimize the performance while reading a huge file with more than...read more

Tell us how to improve this page.

Citicorp Senior Technical Lead Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 575 Interviews
HSBC Group Interview Questions
3.9
 • 487 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
BNY Interview Questions
3.9
 • 347 Interviews
UBS Interview Questions
3.9
 • 338 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
View all
Citicorp Senior Technical Lead Salary
based on 11 salaries
₹20.5 L/yr - ₹40 L/yr
29% more than the average Senior Technical Lead Salary in India
View more details

Citicorp Senior Technical Lead Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

5.0

Job security

4.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Assistant Vice President
4.8k salaries
unlock blur

₹17 L/yr - ₹48.5 L/yr

Assistant Manager
3.3k salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Officer
2.9k salaries
unlock blur

₹10.6 L/yr - ₹35.9 L/yr

Vice President
2.6k salaries
unlock blur

₹21 L/yr - ₹70.8 L/yr

Manager
2.3k salaries
unlock blur

₹11.5 L/yr - ₹38 L/yr

Explore more salaries
Compare Citicorp with

Wells Fargo

3.8
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare

BNY

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