Upload Button Icon Add office photos

Citicorp

Compare button icon Compare button icon Compare

Filter interviews by

Citicorp Interview Questions, Process, and Tips

Updated 2 Mar 2025

Top Citicorp Interview Questions and Answers

View all 276 questions

Citicorp Interview Experiences

Popular Designations

564 interviews found

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There was one online exam

Round 2 - One-on-one 

(2 Questions)

  • Q1. Type of derivatives
  • Ans. 

    Derivatives are financial instruments whose value is derived from an underlying asset or group of assets.

    • Derivatives can be categorized into options, futures, forwards, and swaps.

    • Options give the holder the right, but not the obligation, to buy or sell an asset at a specific price within a specific time frame.

    • Futures are contracts to buy or sell an asset at a predetermined price on a specified date in the future.

    • Forwar...

  • Answered by AI
  • Q2. What is NAV and its formula
  • Ans. 

    NAV stands for Net Asset Value, which is the value of a fund's assets minus its liabilities.

    • NAV is calculated by subtracting the total value of a fund's liabilities from the total value of its assets.

    • The formula for NAV is (Total Assets - Total Liabilities) / Total Number of Outstanding Shares.

    • NAV is used to determine the price at which investors can buy or sell shares of a mutual fund or ETF.

  • Answered by AI

Fund Accountant Interview Questions asked at other Companies

Q1. What was the journal entry for prepaid rent which has paid at beginning of the month for the whole year and entry at the end of month ?? Which is entry affects the networth??
View answer (4)

pbwm Interview Questions & Answers

user image Haritha Jayaraman

posted on 5 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It contains the aptitude of dbms,os,oops,programming and coding questions 2

Round 2 - One-on-one 

(2 Questions)

  • Q1. About projects explanation to explain your project
  • Q2. Oops concepts four pillars
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain your work in current project
  • Ans. 

    I am currently working on developing a web application for a client in the e-commerce industry.

    • Developing front-end using React.js

    • Implementing back-end functionalities using Node.js and Express

    • Integrating payment gateway for online transactions

    • Optimizing performance and user experience

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain the design of the current project
  • Ans. 

    The current project is a web application for managing inventory and sales.

    • The project uses a client-server architecture with a front-end built using React and a back-end built using Node.js and MongoDB.

    • The front-end communicates with the back-end through RESTful APIs.

    • The project includes features such as user authentication, product management, sales tracking, and reporting.

    • The design follows a modular approach with se...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Managerial round was very rude. Felt like they were forced to take interview.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Veritas cluster questions
  • Q2. /boot full, what steps do you take

Interview Preparation Tips

Interview preparation tips for other job seekers - HR response is too slow

Linux System Administrator Interview Questions asked at other Companies

Q1. What are the causes of user not able to login application
View answer (9)

Citicorp interview questions for popular designations

 Analyst

 (24)

 Assistant Manager

 (22)

 Associate Vice President

 (19)

 Business Analyst

 (18)

 Officer

 (15)

 AVP

 (14)

 Software Developer

 (12)

 Assistant Vice President

 (11)

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The assessment consisted of two moderate-level questions related to data structures and algorithms, focusing on strings and 2D arrays, within a time frame of 45 minutes. In the web development section, there were 15 questions each from React and Angular.

Round 2 - Technical 

(2 Questions)

  • Q1. What is object-oriented programming (OOP), and can you explain the concepts of shallow copy and deep copy? Additionally, what technology stack would you choose for a project, and what are the reasons behin...
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, with shallow copy creating a new object with references to the original, and deep copy creating a new object with copies of the original's values.

    • OOP is a programming paradigm that focuses on objects and classes.

    • Shallow copy creates a new object that references the original object's data.

    • Deep copy creates a new object with copies of the original object's da...

  • Answered by AI
  • Q2. What are the features of the project?
  • Ans. 

    The project features include real-time data processing, machine learning algorithms, and user-friendly interface.

    • Real-time data processing for instant updates

    • Machine learning algorithms for predictive analysis

    • User-friendly interface for easy navigation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice data structures and algorithms regularly, participate in contests, and review your projects consistently.

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Get interview-ready with Top Citicorp Interview Questions

Risk Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is difference between join and merge?
  • Ans. 

    Join is used in SQL to combine rows from two or more tables based on a related column, while merge is used in data manipulation tools like pandas to combine data frames based on common columns.

    • Join is typically used in SQL queries to combine rows from two or more tables based on a related column

    • Merge is used in data manipulation tools like pandas to combine data frames based on common columns

    • Join can be inner, outer, l...

  • Answered by AI
  • Q2. What is left join?
  • Ans. 

    Left join is a type of join operation in SQL that returns all rows from the left table and the matched rows from the right table.

    • Left join combines rows from two tables based on a related column between them.

    • If there is no match for a row in the right table, NULL values are used for the columns from the right table.

    • Example: SELECT * FROM table1 LEFT JOIN table2 ON table1.id = table2.id;

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to move to Citi?
  • Ans. 

    I want to move to Citi because of its reputation for innovation and global presence.

    • Citi is known for its cutting-edge technology and data analytics, which aligns with my skills and interests.

    • I am excited about the opportunity to work in a diverse and dynamic environment at Citi.

    • Citi's global presence offers the chance to work on a wide range of projects and collaborate with colleagues from around the world.

  • Answered by AI
  • Q2. What is expected CTC?
  • Ans. 

    Expected CTC is negotiable based on candidate's experience, skills, and the company's budget.

    • Expected CTC depends on the candidate's level of experience and skills.

    • It also depends on the company's budget and industry standards.

    • Negotiation is common during the offer stage to reach a mutually agreeable CTC.

    • Candidates can research average salaries for similar roles to have an idea of what to expect.

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

(2 Questions)

  • Q1. What challenges did you overcome in your last company?
  • Ans. 

    I overcame challenges related to data accuracy and communication in my previous company.

    • Implemented new data validation processes to improve accuracy

    • Improved communication between departments to streamline workflow

    • Resolved discrepancies in risk assessment reports through thorough analysis

  • Answered by AI
  • Q2. Explain a challenge that you solved?
  • Ans. 

    I successfully implemented a new risk assessment model for a financial institution.

    • Identified limitations of current risk assessment model

    • Researched and analyzed alternative models

    • Collaborated with team to implement and test new model

    • Monitored and adjusted model based on feedback and results

  • Answered by AI

Skills evaluated in this interview

Risk Analyst Interview Questions asked at other Companies

Q1. How will you determine the factors can be considered as risk while insuring a bike?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How HashMap internally works in java ?
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap uses hashing to store and retrieve key-value pairs.

    • It uses an array of linked lists to handle collisions.

    • The key's hash code is used to determine the index in the array where the key-value pair will be stored.

    • If two keys have the same hash code, they are stored in the same linked list.

    • HashMap allows o...

  • Answered by AI
  • Q2. How HashSet internally works in java ?
  • Ans. 

    HashSet internally uses a HashMap to store elements as keys with a dummy value.

    • HashSet uses a HashMap to store elements as keys with a dummy value

    • It does not allow duplicate elements

    • Elements are stored based on their hash code

    • HashSet does not maintain insertion order

  • Answered by AI

Skills evaluated in this interview

Assistant Vice President Interview Questions asked at other Companies

Q1. What measurements previous employer taken after infamous Cobra Post operation?
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What makes you a good candidate?
  • Ans. 

    I am a good candidate because of my strong financial background, analytical skills, and ability to work well under pressure.

    • Extensive experience in financial analysis and reporting

    • Strong analytical skills to interpret data and make informed decisions

    • Proven ability to work well under pressure and meet tight deadlines

    • Excellent communication and interpersonal skills for building relationships with clients and colleagues

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is IFRC and USGaap?
  • Ans. 

    IFRC stands for International Financial Reporting Standards and USGaap stands for United States Generally Accepted Accounting Principles.

    • IFRC is a set of accounting standards developed by the International Accounting Standards Board (IASB).

    • USGaap is a set of accounting principles used in the United States for financial reporting.

    • IFRC focuses on principles-based standards, while USGaap is more rules-based.

    • IFRC is used i...

  • Answered by AI

Financial Associate Interview Questions asked at other Companies

Q1. Journal entry for cash sales?
View answer (33)

IT Analyst C2 Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated IT Analyst with a strong background in troubleshooting, problem-solving, and project management.

    • Experienced in analyzing complex technical issues and providing effective solutions

    • Proficient in various programming languages such as Java, Python, and SQL

    • Skilled in project management tools like Jira and Trello

    • Strong communication skills and ability to work well in a team environment

  • Answered by AI
  • Q2. Can you keep working in 24*7 environment
  • Ans. 

    Yes, I am comfortable working in a 24*7 environment and have experience doing so.

    • I have previous experience working in a 24*7 environment and have successfully managed my work schedule.

    • I am adaptable and can handle working during odd hours or on weekends if required.

    • I understand the importance of being available round the clock in certain IT roles, especially for critical systems maintenance or support.

    • I am willing to ...

  • Answered by AI

IT Analyst C2 Interview Questions asked at other Companies

Q1. How do you create alert mechanism with using any 3rd party tools ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Overall 

(2 Questions)

  • Q1. Can you describe a time when you identified a critical business problem through data analysis, and how you used analytics to influence a strategic decision within your organisation? What was the impact of ...
  • Ans. 

    I identified a critical business problem through data analysis and used analytics to influence a strategic decision.

    • Identified a decrease in customer retention rates through data analysis of customer feedback and purchase history

    • Used predictive analytics to identify key factors contributing to customer churn, such as pricing changes and product availability

    • Presented findings to senior management and recommended impleme...

  • Answered by AI
  • Q2. Can you explain how logistic regression handles binary classification, and how you would interpret the coefficients in the model? Additionally what metrics would you prioritise to evaluate the model?
  • Ans. 

    Logistic regression is a statistical model used for binary classification, interpreting coefficients and evaluating metrics.

    • Logistic regression is a statistical model that predicts the probability of a binary outcome based on one or more predictor variables.

    • It uses the logistic function to map the input features to a probability between 0 and 1.

    • The coefficients in the model represent the impact of each predictor variab...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - As an interviewee, I’ve always kept in mind that skills can be sharpened over time. While proficiency is easier to enhance, personality grows slowly. In long-term we work with personality. I believe every interviewer knows it for their team

Skills evaluated in this interview

Top Citicorp Assistant Manager Interview Questions and Answers

Q1. Types of swift and how it read it. Like its fields.
View answer (1)

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (87)

Citicorp Interview FAQs

How many rounds are there in Citicorp interview?
Citicorp interview process usually has 2-3 rounds. The most common rounds in the Citicorp interview process are Technical, One-on-one Round and HR.
How to prepare for Citicorp 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 Java, SQL, Microservices, phone banking and Communication Skills.
What are the top questions asked in Citicorp interview?

Some of the top questions asked at the Citicorp interview -

  1. 1)Why do we use redefines 2) In a sortt if we have - Copy, Include, Omit, sort...read more
  2. A fish using 6 sticks was drawn in a specific direction and was asked to rotate...read more
  3. Why do you think almost all the IITs are populated mostly by students from the ...read more
How long is the Citicorp interview process?

The duration of Citicorp interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Citicorp Interview Process

based on 397 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 640 Interviews
IndusInd Bank Interview Questions
3.5
 • 601 Interviews
Yes Bank Interview Questions
3.7
 • 429 Interviews
Federal Bank Interview Questions
3.9
 • 125 Interviews
View all

Citicorp Reviews and Ratings

based on 4.4k reviews

3.7/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

3.9

Salary

3.6

Job security

3.4

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 4.4k Reviews and Ratings
Assistant Vice President
4.7k salaries
unlock blur

₹17 L/yr - ₹48 L/yr

Assistant Manager
3.3k salaries
unlock blur

₹6.1 L/yr - ₹20.5 L/yr

Officer
2.8k salaries
unlock blur

₹10.6 L/yr - ₹35.5 L/yr

Vice President
2.5k salaries
unlock blur

₹24 L/yr - ₹70 L/yr

Manager
2.3k salaries
unlock blur

₹9 L/yr - ₹37 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