Upload Button Icon Add office photos

Filter interviews by

Citicorp Technology Analyst Interview Questions and Answers

Updated 10 Jul 2024

Citicorp Technology Analyst Interview Experiences

2 interviews found

Technology Analyst Interview Questions & Answers

user image sankarshan kulkarni

posted on 10 Jul 2024

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

Coding, DSA, OOPS, Mathematical Aptitude, Logical Reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. Questions were based out of SQL, Python libraries and Machine learning projects as a part of my resume.
  • Q2. Resume based projects
Round 3 - HR 

(2 Questions)

  • Q1. Despite being from engineering background, why do you wanted to join a financial industry?
  • Q2. Where do you see yourself after 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your resume projects and be cool and calm while preparing for interviews
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Oct 2022. 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 - Group Discussion 

Discussing the merits and drawbacks of different workplace initiatives

Round 3 - Technical 

(2 Questions)

  • Q1. Discuss Database Design
  • Ans. 

    Database design involves creating a structure that efficiently stores and organizes data for easy retrieval and manipulation.

    • Identify the data requirements and relationships between different entities

    • Normalize the database to reduce redundancy and improve data integrity

    • Choose appropriate data types and constraints for each field

    • Create indexes to optimize query performance

    • Consider scalability and future growth when desi

  • Answered by AI
  • Q2. Logical thinking on how to evacuate a retail store and how you would prioritise.

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s more about thought process than actual answers

Skills evaluated in this interview

Technology Analyst Interview Questions Asked at Other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Minimum Number of Vertices to Reach All Nodes Problem Statement I ... read more
Q3. Flatten a Multilevel Sorted Linked List You are given a linked li ... read more
asked in Infosys
Q4. An atomic spark job runs for 15 mins everyday ,one day it is runn ... read more
Q5. Box Stacking Problem Statement Consider you are provided with 'n' ... read more

Interview questions from similar companies

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

There were 3 coding questions having LC easy-medium problems.

Round 2 - Technical 

(2 Questions)

  • Q1. DSA Coding questions from LC
  • Q2. Asked about CS fundamentals - OS, OOPs etc.
Round 3 - Technical 

(2 Questions)

  • Q1. OOPs Design - Low Level Design Round
  • Q2. Follow up questions on the solution
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Equals and hashcode implementation
  • Q2. Config server configuration steps
  • Ans. 

    Config server configuration steps

    • Install and set up the config server software

    • Configure the server with the necessary properties and settings

    • Define the repository for storing configuration files

    • Create and manage configuration files

    • Ensure proper security measures are in place

    • Test and validate the configuration

    • Monitor and maintain the config server

  • Answered by AI
  • Q3. Patch mapping in spring rest
  • Ans. 

    Patch mapping in Spring REST is used to partially update resources.

    • Patch mapping allows clients to send only the fields that need to be updated instead of sending the entire resource.

    • It is useful when updating large resources or when clients have limited bandwidth.

    • Spring provides the @PatchMapping annotation to handle patch requests.

    • The @PatchMapping annotation can be used with a specific URL or with a wildcard URL pat...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 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 - Technical 

(1 Question)

  • Q1. SQL concepts related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Mid level SQL related questions

I applied via Approached by Company and was interviewed in Feb 2022. There were 2 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 - Technical 

(1 Question)

  • Q1. Why do you want to join JPMC

Interview Preparation Tips

Interview preparation tips for other job seekers - Be sincere and need good communication skills.

I was interviewed in May 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

The round was conducted early in the morning.There were 3 sections:
1.Aptitude based on Maths and Logic
2.Questions based of core subjects and basic Data Structures
3.Coding Round -2 questions

  • Q1. 

    Minimum Number of Vertices to Reach All Nodes Problem Statement

    In a directed acyclic graph with 'N' nodes, given a matrix 'edges' of size M x 2 representing 'M' edges where each edge is directed from nod...

  • Ans. 

    I applied DFS to solve this problem.

  • Answered Anonymously
  • Q2. 

    Box Stacking Problem Statement

    Consider you are provided with 'n' different types of rectangular 3D boxes. For each type of box, you have three separate arrays: height, width, and length that define the d...

  • Ans. Brute Force
    • This is a recursive approach.
    • Make an integer matrix ‘boxes’ of dimension (3*n, 3), we will store all three rotations of each type of boxes in it.
    • Generate all 3 rotations for all ‘n’ types of boxes,  for simplicity we will consider ‘width’ always smaller than or equal to ‘length’. Store them in matrix ‘boxes’ such that boxes[i][0], boxes[i][1], boxes[i][2] give height, width, length of ‘i’th box respecti...
  • Answered Anonymously
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

A face to face interview was scheduled with the interviewer.I was asked to solve a few coding questions and then asked questions based on OS and OOPS and some questions related to the working of my projects.

  • Q1. 

    Sort 0 and 1 Problem Statement

    Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using an...

  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously
  • Q2. 

    Flatten a Multilevel Sorted Linked List

    You are given a linked list with 'N' nodes, where each node contains two pointers: one is 'NEXT' pointing to the next node in the list, and the other is 'CHILD', po...

  • Ans. Brute Force

    The idea is to use an extra array to first store all the elements of the linked list and then sort the array and finally put those elements back into the linked list and return.

     

    • Declare an array ‘Answer’ to store the elements of the linked list.
    • Run a while loop till the next of the linked list reaches NULL.
      • Add the current pointer data to Answer.
      • Inside this loop, traverse the CHILD nodes of the current n...
  • Answered Anonymously
Round 3 - HR 

Round duration - 40 Minutes
Round difficulty - Easy

I was asked basic HR questions and some questions based on my resume.
 

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Technology Analyst in BangaloreEligibility criteriaNo crieriaMorgan Stanley interview preparation:Topics to prepare for the interview - Operating System, Object-Oriented Programming (OOPS), Algorithms, Dynamic Programming, Data StructuresTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Don't focus on the number of questions but on the concepts and quality.
Tip 2 : Do at least 2 projects.
Tip 3 : Go through the previously asked questions of the company you are applying for.

Application resume tips for other job seekers

Tip 1 : The projects you do should be explained in a concise manner. Keep the resume short and crisp while delivering all the important details.
Tip 2 : Highlight the unique points.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Interview questions were based on basic computer knowledge
  • Q2. Basic computer questions
  • Q3. Basic computer knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

I applied via Campus Placement and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Coding Test 

(1 Question)

  • Q1. During the hackathon, I was asked about what I felt about the team dynamics and what strategies I would take to ensure everyone arrives at consensus to work together.
Round 2 - One-on-one 

(2 Questions)

  • Q1. I was asked to explain a college project and was asked follow on questions on the same
  • Q2. Questions on linked lists, algorithm to identify 2nd, 3rd connections on a site like LinkedIn. I was asked some other data structure questions that I don't recollect as this interview took place years ago

Interview Preparation Tips

Interview preparation tips for other job seekers - While participating in hackathons, ensure you're not just deploying your coding skills but also teamworking and soft skills.

Interview Preparation Tips

Round: Test
Experience: Apptitude test (16 shortlisted out of 65) 10 quant + logic 10 data structure , operating systems 30 programming questions (you have option to select c/c++/java)Passing individually in all sections compulsorygood quality of questionskeep concepts well in place

Round: Technical Interview
Experience: 1. Given an array of size n this contains all integers from 1 to n+1 except one. Array is notsorted. You have to find the missing element by traversing the array only once and no extraspace allowed.(the solution I proposed was to xor all elements of array and all numbers from1 to n+1 the final value of xor is the answer . He asked me to code this).2. Given a string of characters like “34235” convert it to integer format. (I answered like simplesolution. Was told to code it).3. Given a large file. Each line has some string you have to find palindrome in the string andappend the middle element of palindrome to end of string. It was v important to considercase like when you append characters to end of string it may go to next line and create newpalindromes in next line.(I read 1 line from input file found middle letters of all palindromesappended to string and outputted it in new file say output.txt. Now if it has over flown inoutput file handle it in next iteration …).4. Given a program find output c++ program quite tricky. It was using pointers as member ofclass to test allocation and deallocation of memory.

Round: Technical Interview
Experience: Final Technical Interview 2 Interviewers

1. Tell me something about yourself

2. Explain me your project (was in my resume).

3. Write all dbms tables used in ur project4. How will you represent matrix of any arbitrary size say m*n in a database.(I answered 

5. Given 2 matrix in your database write a sql query to add them.

6. Now write a sql query to multiply 2 matrix

7. Program to find height of a binary tree.(I gave recursive solution)

8. Without recursion

9. Find loop in a binary tree and also find whether loop is sibling loop or ancestor loop or 

10. Can a constructor be virtual?(in c++)

11. Can a destructor be virtual?

12. Can a constructor b private?13. Can a destructor b private?

14. Can a destructor b pure virtual function?......

15. Given a file having 10000 lines I want to read all lines v fast(multi threading)

16. Last do you want to ask some thing ?

(id row col data))

arbitrary loop

Round: Group Activity
Experience: Group Activity-(now no further eliminations) we were divided in group of 3 and 4, 8 or 9 panelists were watching us We were given a list of servers databases and client systems having pros and cons. We were asked to choose the best possible combination that suits all client requirements.

Round: HR Interview
Experience:  Tell something about yourself Greatest achievement in your life
 Achievements of others that u like
 Gave me scenario like you are team leader and you have to instruct your team to deliver blood from blood bank to hospital v v fast as someones life is in danger.. 
 1 more similar case
 Then he asked me r u a team player
 He was like what you do to motivate your team as a leader and how would you make your team perform best.
 Do you want to ask some thing to me???(this is v important ask abt company ur role in it….).

General Tips: Be honest.Do not write anything on resume,people are v v smart they will catch youThey touch all domains so b strong in all areas, dbms os datastructure programmingIf you don’t know something ,tell them, they will help youInterviewers are v cooperative, help you a lot and if you get stuck they will drop hintsBe CALM confident and positiveFinally I would say, interviews with Morgan Stanley , it is a great experience!!ALL THE BEST !!!! 
College Name: VJTI

Citicorp Interview FAQs

How many rounds are there in Citicorp Technology Analyst interview?
Citicorp interview process usually has 3 rounds. The most common rounds in the Citicorp interview process are Technical, Resume Shortlist and Group Discussion.
What are the top questions asked in Citicorp Technology Analyst interview?

Some of the top questions asked at the Citicorp Technology Analyst interview -

  1. Discuss Database Des...read more
  2. Logical thinking on how to evacuate a retail store and how you would prioriti...read more
  3. Questions were based out of SQL, Python libraries and Machine learning projects...read more

Tell us how to improve this page.

Citicorp Technology Analyst Interview Process

based on 4 interviews

Interview experience

5
  
Excellent
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
4.0
 • 624 Interviews
IndusInd Bank Interview Questions
3.6
 • 591 Interviews
Wells Fargo Interview Questions
3.9
 • 563 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
Yes Bank Interview Questions
3.7
 • 414 Interviews
View all
Citicorp Technology Analyst Salary
based on 159 salaries
₹11.4 L/yr - ₹27.1 L/yr
179% more than the average Technology Analyst Salary in India
View more details

Citicorp Technology Analyst Reviews and Ratings

based on 13 reviews

4.4/5

Rating in categories

3.7

Skill development

4.6

Work-life balance

3.9

Salary

4.1

Job security

4.3

Company culture

3.0

Promotions

3.6

Work satisfaction

Explore 13 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 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 - ₹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