Upload Button Icon Add office photos

Filter interviews by

Citicorp Manager Interview Questions, Process, and Tips

Updated 18 Jul 2024

Top Citicorp Manager Interview Questions and Answers

Citicorp Manager Interview Experiences

8 interviews found

Manager Interview Questions & Answers

user image Anonymous

posted on 18 Jul 2024

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

(2 Questions)

  • Q1. Roles and responsibilities in the current role
  • Q2. Situational questions to check different approaches to solve a problem

Manager Interview Questions & Answers

user image Aditya Krishna

posted on 14 Jun 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. String Function related SQL question
  • Q2. Citi specific questions

Manager Interview Questions Asked at Other Companies

Q1. There is a chairman of a conglomerate. He has been on the post fo ... read more
asked in Axis Bank
Q2. How will you convince a school secretary to open account with you ... read more
Q3. What are kpi's?which are the kpi we use in daily basis
asked in HDFC Bank
Q4. what is FDI ,procedure how to settle the fund & why FDI need ... read more
Q5. There is a steel company with 2 plants in India. Now it has done ... read more

Manager Interview Questions & Answers

user image Anonymous

posted on 18 Aug 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Technical with offshore manager
  • Q2. All on the process as per the resume
Round 3 - Technical 

(2 Questions)

  • Q1. Technical round with Onshore partner
  • Q2. As per the resume and on the basis of the process you are applying for

Manager Interview Questions & Answers

user image Anonymous

posted on 27 Jul 2023

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 - Technical 

(2 Questions)

  • Q1. Based on your CV they will ask detailed questions
  • Q2. Just casual questions on personal

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont go for this Company if you have better options, worst company to ever work with. You can sense this from day 1 nothing feels good here . Leaders are not even qualified. Teams keep changing and structure is confusing. They dont even train you for few months and then expect tou to work without trainings

Citicorp interview questions for designations

 Assistant Manager

 (21)

 Associate Manager

 (1)

 Product Manager

 (1)

 Team Manager

 (1)

 Senior Manager

 (1)

 PMO Manager

 (1)

 Assistant Manager Operations

 (2)

 Technical Support Manager

 (1)

Manager Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Write thread safe link list
  • Ans. 

    Implementing a thread-safe linked list in C++

    • Use mutex locks to ensure only one thread can access the list at a time

    • Implement functions for thread-safe insertion, deletion, and traversal

    • Consider using condition variables to notify waiting threads of changes in the list

  • Answered by AI
  • Q2. Write code to insert element in map
  • Ans. 

    Inserting an element in a map using C++ code

    • Use the insert() function to add a key-value pair to the map

    • If the key already exists, the value will not be updated

    • If you want to update the value for an existing key, you can use the subscript operator []

  • Answered by AI

Skills evaluated in this interview

Manager Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2024

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

I applied via Job Portal and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why should we hire you
Round 2 - One-on-one 

(1 Question)

  • Q1. Strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be familiar with resume and your strength and weakness

Manager Interview Questions & Answers

user image Anonymous

posted on 23 Mar 2022

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Database questions for Java position
  • Q2. SQL performance techniques
  • Ans. 

    SQL performance techniques

    • Use indexes to speed up queries

    • Avoid using SELECT * and only select necessary columns

    • Use stored procedures to reduce network traffic

    • Avoid using subqueries and instead use JOINs

    • Use EXPLAIN to analyze query performance

    • Normalize database tables to reduce redundancy

    • Use connection pooling to reduce overhead

    • Avoid using cursors and use set-based operations instead

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Linux shell script for reading and parsing the flat file
  • Ans. 

    A Linux shell script can be used to read and parse a flat file.

    • Use the 'read' command to read the file line by line

    • Use 'cut' command to parse the data based on delimiter

    • Use 'awk' command to filter and manipulate data

    • Use 'sed' command to search and replace data

    • Use 'grep' command to search for specific patterns in the file

  • Answered by AI
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why are you looking for a change?
  • Q3. Where do you see yourself in 5 years?
  • Q4. Minimum salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are really low paid, then join Citi for 2 years for salary correction. However you might feel depressed and loose all your technical skills within 2 years.

Skills evaluated in this interview

Manager Interview Questions & Answers

user image Anonymous

posted on 6 Sep 2022

I applied via Referral and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions related to the JD

Interview Preparation Tips

Interview preparation tips for other job seekers - Please go through JD and prepare for the interview. Questions based on the profile

Interview questions from similar companies

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 May 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Internal working of HashMap and Concurrency Map
  • Ans. 

    HashMap is a data structure that stores key-value pairs, while Concurrency Map allows for safe concurrent access.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • Concurrency Map implementations like ConcurrentHashMap use locks or other mechanisms to allow safe concurrent access.

    • HashMap allows for null keys and values, while ConcurrentHashMap does not allow null keys or values.

    • Concurrency Map im...

  • Answered by AI
  • Q2. Multithreading questions
  • Q3. Questions on PCF, how the deployment works
  • Q4. One Sorting question to list the count of employees by age

Interview Preparation Tips

Interview preparation tips for other job seekers - Over all, good experience.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to optimize SQL Joins
  • Ans. 

    Optimizing SQL Joins involves using proper indexing, limiting the result set, and avoiding unnecessary joins.

    • Use indexes on columns involved in join conditions to improve performance

    • Limit the result set by using WHERE clause to filter out unnecessary rows before joining

    • Avoid unnecessary joins by only joining the tables that are needed for the query

  • Answered by AI
  • Q2. How to optimize performance
  • Ans. 

    Optimizing performance involves setting clear goals, providing feedback, offering training and development opportunities, and fostering a positive work environment.

    • Set clear goals and expectations for employees

    • Provide regular feedback and recognition for good performance

    • Offer training and development opportunities to help employees improve their skills

    • Create a positive work environment that promotes collaboration and c...

  • Answered by AI

Skills evaluated in this interview

Citicorp Interview FAQs

How many rounds are there in Citicorp Manager interview?
Citicorp interview process usually has 1-2 rounds. The most common rounds in the Citicorp interview process are Technical, One-on-one Round and HR.
How to prepare for Citicorp Manager 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 Citicorp. The most common topics and skills that interviewers at Citicorp expect are Project Management, Risk Management, Unix, Analytical and Credit Cards.
What are the top questions asked in Citicorp Manager interview?

Some of the top questions asked at the Citicorp Manager interview -

  1. Linux shell script for reading and parsing the flat f...read more
  2. write code to insert element in ...read more
  3. SQL performance techniq...read more

Tell us how to improve this page.

Citicorp Manager Interview Process

based on 9 interviews

2 Interview rounds

  • One-on-one Round
  • Technical Round
View more
Citicorp Manager Salary
based on 2.3k salaries
₹9 L/yr - ₹38 L/yr
38% more than the average Manager Salary in India
View more details

Citicorp Manager Reviews and Ratings

based on 144 reviews

4.0/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

4.2

Salary

4.0

Job security

3.6

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 144 Reviews and Ratings
Assistant Vice President
4.6k salaries
unlock blur

₹17 L/yr - ₹47.2 L/yr

Assistant Manager
3.3k salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Officer
2.9k salaries
unlock blur

₹10.1 L/yr - ₹35 L/yr

Vice President
2.5k salaries
unlock blur

₹24 L/yr - ₹70 L/yr

Manager
2.3k salaries
unlock blur

₹9 L/yr - ₹38 L/yr

Explore more salaries
Compare Citicorp with

State Bank of India

3.8
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

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