Upload Button Icon Add office photos

Filter interviews by

Citicorp Software Developer Interview Questions, Process, and Tips

Updated 9 Dec 2024

Top Citicorp Software Developer Interview Questions and Answers

  • Q1. Ways To Make Coin Change Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these ...read more
  • Q2. Non-Decreasing Array Problem Statement Given an integer array ARR of size N , determine if it can be transformed into a non-decreasing array by modifying at most one ele ...read more
  • Q3. How can a chemical Engineer help citi?

Citicorp Software Developer Interview Experiences

13 interviews found

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

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. They grind u in javascript,typescript
  • Q2. Html css, angular
  • Q3. Deep preparation needed

Interview Preparation Tips

Interview preparation tips for other job seekers - Not an easy interview
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

DSA and array with graph skills 2:00 hours , leetcode

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in building web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and deployment tools like Heroku

    • Strong problem-solving skills and ability

  • Answered by AI
  • Q2. Why we should considered

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Strength and positives
  • Q2. Weakness and feedback
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed before Sep 2023.

Round 1 - Coding Test 

The coding question was there 2 questions basically on array were there which was easy

Round 2 - Technical 

(2 Questions)

  • Q1. Swap zeros to the end dsa array,
  • Ans. 

    Swap zeros to the end of a string array

    • Iterate through the array and move all zeros to the end

    • Use two pointers to keep track of non-zero elements and zeros

    • Example: Input: ['a', '0', 'b', 'c', '0'], Output: ['a', 'b', 'c', '0', '0']

  • Answered by AI
  • Q2. Some questions on oops and react js and javascript

Skills evaluated in this interview

Citicorp interview questions for designations

 Software Developer Intern

 (3)

 Java Software Developer

 (2)

 Full Stack Software Developer

 (1)

 Developer

 (3)

 Software Engineer

 (11)

 Java Developer

 (6)

 Application Developer

 (3)

 ETL Developer

 (1)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about your work
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DSA basic question which can be found on dsa sheet

Round 2 - Case Study 

Asked me to design a project from scratch

Round 3 - HR 

(1 Question)

  • Q1. Basic question about work life balance
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Tiruchirappalli and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 medium dsa questions 1 hour time

Round 2 - Technical 

(1 Question)

  • Q1. OOPS concept, decomposition, aggregation, puzzles
Round 3 - HR 

(1 Question)

  • Q1. Why you will be a good fit,

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basics

Software Developer interview

user image Sai Charan Malyala [ NIT warangal ]

posted on 26 Jan 2022

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

I applied via campus placement at MKSSSS Commins College of Engineering for Woman, Pune and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was fairly standard. 2 coding questions and mcqs plus aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Most questions were about java. Few about the ide i used, etc.
Round 3 - HR 

(2 Questions)

  • Q1. Resume based questions
  • Q2. Asked about the paper i had written in college

Interview Preparation Tips

Topics to prepare for Citicorp Software Developer interview:
  • DSA
  • Coding
  • Java

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was in the evening at about 7 pm. The test platform was quite user friendly and easy to use.
There were 3 sections in test. One was logical ability, second was english, third was coding 
Questions were of medium difficulty.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. Recursion

     

    1. The idea is to use recursion.
    2. For a particular coin, we have two options either include it or exclude it.
    3. If we include that coin, then calculate the remaining number that we have to generate so recur for that remaining number.
    4. If we exclude that coin, then recur for the same amount that we have to make.
    5. Our final answer would be the total number of ways either by including or excluding.
    6. There will be two edg...
  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

It was a 30 minute interview. In which I was provided with questions on data structures and algorithms to check my problem solving skills.

  • Q1. 

    Non-Decreasing Array Problem Statement

    Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element.

    An array is defined as non-de...

  • Ans. Brute Force

    As we are allowed at most one modification, we can try it on every index separately and naively check whether the array becomes non-decreasing by any modification. For this, we can modify the starting index (i.e. 0) to a very less value (say INT_MIN) and the rest of the indexes as the value of the preceding element if present (i.e. ARR[i] = ARR[i - 1]). 

    Space Complexity: O(1)Explanation:

    O(1).

     

    As w...

  • Answered Anonymously
Round 3 - Face to Face 

Round duration - 40 Minutes
Round difficulty - Medium

In this round , interviewer discussed about my resume. As I had done a internship in sql and database so he asked me questions related to dbms and sql queries.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteriaAbove 7.5 cgpaCiti Bank interview preparation:Topics to prepare for the interview - Data structures, oops, algorithms, operating system, dbms, pointers, dynamic programmingTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : practice data structures and algorithms thoroughly
Tip 2 : do atleast 2 project
Tip 3 : maintain a decent cgpa (above 8.5)

Application resume tips for other job seekers

Tip 1 : write all your academic achievements on resume
Tip 2 : do not write false things in resume
Tip 3 : be thorough with your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Citicorp Interview FAQs

How many rounds are there in Citicorp Software Developer interview?
Citicorp interview process usually has 2 rounds. The most common rounds in the Citicorp interview process are HR, Technical and Coding Test.
How to prepare for Citicorp Software Developer 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 Big Data, Hive, Java, SQL and Spark.
What are the top questions asked in Citicorp Software Developer interview?

Some of the top questions asked at the Citicorp Software Developer interview -

  1. How can a chemical Engineer help ci...read more
  2. swap zeros to the end dsa arr...read more
  3. Most questions were about java. Few about the ide i used, e...read more
How long is the Citicorp Software Developer interview process?

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

Tell us how to improve this page.

Citicorp Software Developer Interview Process

based on 10 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round
  • HR Round
View more
Citicorp Software Developer Salary
based on 321 salaries
₹11 L/yr - ₹29 L/yr
167% more than the average Software Developer Salary in India
View more details

Citicorp Software Developer Reviews and Ratings

based on 32 reviews

3.5/5

Rating in categories

3.2

Skill development

3.6

Work-life balance

4.2

Salary

3.5

Job security

3.5

Company culture

3.3

Promotions

3.1

Work satisfaction

Explore 32 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