Upload Button Icon Add office photos

Citicorp

Compare button icon Compare button icon Compare

Filter interviews by

Citicorp Vice President Engineering Interview Questions and Answers

Updated 13 Feb 2024

Citicorp Vice President Engineering Interview Experiences

1 interview found

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

(1 Question)

  • Q1. SQL queries and few functional questions
Round 2 - One-on-one 

(1 Question)

  • Q1. General questions by hiring manager. Why leaving current org, current project related questions

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. DSA algorithm question
Round 2 - One-on-one 

(1 Question)

  • Q1. Docker and kubernetes
Round 3 - One-on-one 

(1 Question)

  • Q1. Deployment strategies
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Explain about the recent project you have worked on and how it impacted the overall business?
  • Ans. 

    Led a cross-functional team to develop a cloud-based analytics platform, enhancing data-driven decision-making and operational efficiency.

    • Implemented a cloud-based analytics platform that streamlined data collection and reporting processes.

    • Reduced data processing time by 40%, allowing teams to make quicker, informed decisions.

    • Facilitated real-time insights into customer behavior, leading to a 15% increase in customer r...

  • Answered by AI
  • Q2. What is the one challenging problem you have faced in your overall working experience that helped you to learn and upskill?
  • Ans. 

    Led a cross-functional team to overcome a critical product launch delay, enhancing my leadership and problem-solving skills.

    • Faced a significant delay in a product launch due to unforeseen technical challenges.

    • Implemented agile methodologies to improve team collaboration and responsiveness.

    • Conducted root cause analysis to identify bottlenecks and streamline processes.

    • Facilitated daily stand-ups and retrospectives to fos...

  • Answered by AI

I applied via Recruitment Consulltant and was interviewed before Feb 2021. 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 - One-on-one 

(1 Question)

  • Q1. Profile based /process related
Round 3 - One-on-one 

(1 Question)

  • Q1. Profile based/Process related
Round 4 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Why are you looking for a change?
  • Q4. Compensation negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Sodexo/insurance/transport are on top of ctc

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Explain SCD Type 2 Implementation in Informatica
  • Ans. 

    SCD Type 2 is a technique used to track historical changes in data over time in a data warehouse.

    • SCD Type 2 maintains a separate row for each change in data, with a start and end date.

    • It requires a surrogate key to uniquely identify each row.

    • Informatica provides a built-in SCD Type 2 transformation to implement this technique.

    • Example: tracking changes in customer addresses over time.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly focus on basic BI terminologies, common to trivial scenarios and introductory information on latest trending tools and technologies.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jan 2021. There were 2 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 - One-on-one 

(1 Question)

  • Q1. Most of the questions were centred around Derivatives and Fixed Income Securities

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a sound knowledge in Financial and Economics oriented topics.

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

Interview Questionnaire 

1 Question

  • Q1. Questions related to Python, my former organisation, why do you want to shift, questions related to different types of risk

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be on time and well dressed
Communication must be good
Answer questions if you can, if you don’t know just accept you don’t know

I applied via Campus Placement and was interviewed before Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Have you ever worked in a team and how did you manage conflicts?
  • Ans. Gave an example of an academic group project and explained in detail the conflict or clash of ideas and how we approached towards an agreement
  • Answered Anonymously
  • Q2. Why finance?
  • Ans. Natural skills of analysis and interest towards numbers. Love to deal anything involving money or resource management
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be natural and your own true self. If your natural skills are inclined towards the requirements, you will be hired or you will know where you have to improve.

I applied via Naukri.com and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Question realted to final year project
  • Q3. Why Morgan Stanley and what do you know about our company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the job description and know the job role as the interview questions are related to it.

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

Citicorp Interview FAQs

How many rounds are there in Citicorp Vice President Engineering interview?
Citicorp interview process usually has 2 rounds. The most common rounds in the Citicorp interview process are Technical and One-on-one Round.

Tell us how to improve this page.

Citicorp Vice President Engineering Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 578 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 Vice President Engineering Salary
based on 21 salaries
₹42 L/yr - ₹60 L/yr
11% less than the average Vice President Engineering Salary in India
View more details

Citicorp Vice President Engineering Reviews and Ratings

based on 3 reviews

3.5/5

Rating in categories

3.0

Skill development

3.5

Work-life balance

4.2

Salary

3.0

Job security

3.5

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 3 Reviews and Ratings
Assistant Vice President
4.9k 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.7 L/yr - ₹35.9 L/yr

Vice President
2.6k salaries
unlock blur

₹24 L/yr - ₹72 L/yr

Manager
2.3k salaries
unlock blur

₹11.5 L/yr - ₹39 L/yr

Explore more salaries
Compare Citicorp with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

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